Merge remote-tracking branch 'upstream/master' into fuzzy-panda-carstate

pull/30443/head
Shane Smiskol 1 year ago
commit 13dd5c9a73
  1. 3
      RELEASES.md
  2. 10
      SConstruct
  3. 2
      common/version.h
  4. 1
      release/files_common
  5. 1
      system/hardware/tici/esim.nmconnection

@ -1,3 +1,6 @@
Version 0.9.6 (2023-XX-XX)
========================
Version 0.9.5 (2023-11-17) Version 0.9.5 (2023-11-17)
======================== ========================
* New driving model * New driving model

@ -38,6 +38,12 @@ AddOption('--compile_db',
action='store_true', action='store_true',
help='build clang compilation database') help='build clang compilation database')
AddOption('--ccflags',
action='store',
type='string',
default='',
help='pass arbitrary flags over the command line')
AddOption('--snpe', AddOption('--snpe',
action='store_true', action='store_true',
help='use SNPE on PC') help='use SNPE on PC')
@ -170,6 +176,10 @@ if arch != "Darwin":
cflags += ['-DSWAGLOG="\\"common/swaglog.h\\""'] cflags += ['-DSWAGLOG="\\"common/swaglog.h\\""']
cxxflags += ['-DSWAGLOG="\\"common/swaglog.h\\""'] cxxflags += ['-DSWAGLOG="\\"common/swaglog.h\\""']
ccflags_option = GetOption('ccflags')
if ccflags_option:
ccflags += ccflags_option.split(' ')
env = Environment( env = Environment(
ENV=lenv, ENV=lenv,
CCFLAGS=[ CCFLAGS=[

@ -1 +1 @@
#define COMMA_VERSION "0.9.5" #define COMMA_VERSION "0.9.6"

@ -214,6 +214,7 @@ system/hardware/tici/agnos.json
system/hardware/tici/amplifier.py system/hardware/tici/amplifier.py
system/hardware/tici/updater system/hardware/tici/updater
system/hardware/tici/iwlist.py system/hardware/tici/iwlist.py
system/hardware/tici/esim.nmconnection
system/hardware/pc/__init__.py system/hardware/pc/__init__.py
system/hardware/pc/hardware.h system/hardware/pc/hardware.h
system/hardware/pc/hardware.py system/hardware/pc/hardware.py

@ -6,6 +6,7 @@ permissions=
autoconnect=true autoconnect=true
autoconnect-retries=100 autoconnect-retries=100
autoconnect-priority=2 autoconnect-priority=2
metered=1
[gsm] [gsm]
apn= apn=

Loading…
Cancel
Save