sforkowany z mirror/meshtastic-firmware
We need our own branch because we need this fix and associated pullrequest https://github.com/espressif/arduino-esp32/pull/40851.2-legacy
rodzic
03cb3c2145
commit
47e614c7d6
|
@ -1,9 +1,15 @@
|
||||||
# High priority
|
# High priority
|
||||||
|
|
||||||
|
- why is the net so chatty now?
|
||||||
|
- E22 bringup
|
||||||
|
- encryption review findings writeup
|
||||||
|
- turn on modem-sleep mode
|
||||||
|
|
||||||
# Medium priority
|
# Medium priority
|
||||||
|
|
||||||
Items to complete before the first beta release.
|
Items to complete before the first beta release.
|
||||||
|
|
||||||
|
- turn on watchdog timer (because lib code seems buggy)
|
||||||
- show battery level as % full
|
- show battery level as % full
|
||||||
- rx signal measurements -3 marginal, -9 bad, 10 great, -10 means almost unusable. So scale this into % signal strength. preferably as a graph, with an X indicating loss of comms.
|
- rx signal measurements -3 marginal, -9 bad, 10 great, -10 means almost unusable. So scale this into % signal strength. preferably as a graph, with an X indicating loss of comms.
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,6 @@ default_envs = tbeam ; Note: the github actions CI test build can't yet build NR
|
||||||
; HW_VERSION (default emptystring)
|
; HW_VERSION (default emptystring)
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
platform = espressif32
|
|
||||||
framework = arduino
|
|
||||||
|
|
||||||
; customize the partition table
|
; customize the partition table
|
||||||
; http://docs.platformio.org/en/latest/platforms/espressif32.html#partition-tables
|
; http://docs.platformio.org/en/latest/platforms/espressif32.html#partition-tables
|
||||||
|
@ -79,6 +77,8 @@ lib_deps =
|
||||||
|
|
||||||
; Common settings for ESP targes, mixin with extends = esp32_base
|
; Common settings for ESP targes, mixin with extends = esp32_base
|
||||||
[esp32_base]
|
[esp32_base]
|
||||||
|
platform = espressif32
|
||||||
|
framework = arduino
|
||||||
src_filter =
|
src_filter =
|
||||||
${env.src_filter} -<nrf52/>
|
${env.src_filter} -<nrf52/>
|
||||||
upload_speed = 921600
|
upload_speed = 921600
|
||||||
|
@ -86,6 +86,8 @@ debug_init_break = tbreak setup
|
||||||
build_flags =
|
build_flags =
|
||||||
${env.build_flags} -Wall -Wextra -Isrc/esp32
|
${env.build_flags} -Wall -Wextra -Isrc/esp32
|
||||||
lib_ignore = segger_rtt
|
lib_ignore = segger_rtt
|
||||||
|
platform_packages =
|
||||||
|
framework-arduinoespressif32 @ https://github.com/meshtastic/arduino-esp32.git
|
||||||
|
|
||||||
; The 1.0 release of the TBEAM board
|
; The 1.0 release of the TBEAM board
|
||||||
[env:tbeam]
|
[env:tbeam]
|
||||||
|
|
Ładowanie…
Reference in New Issue