Merge pull request #679 from njbrown09/entunehotspot

Add Toyota Entune Wifi hotspot to hotspot check.
old-commit-hash: 16d0c4a3e7
commatwo_master
George Hotz 6 years ago committed by GitHub
commit 3c3ecc29d4
  1. 4
      selfdrive/loggerd/uploader.py

@ -86,7 +86,9 @@ def is_on_hotspot():
is_android = result.startswith('192.168.43.') is_android = result.startswith('192.168.43.')
is_ios = result.startswith('172.20.10.') is_ios = result.startswith('172.20.10.')
return (is_android or is_ios) is_entune = result.startswith('10.0.2.')
return (is_android or is_ios or is_entune)
except: except:
return False return False

Loading…
Cancel
Save