1.2-legacy
geeksville 2020-04-15 14:51:17 -07:00
rodzic 0a6af936ed
commit 2464784f00
3 zmienionych plików z 7 dodań i 8 usunięć

10
.vscode/launch.json vendored
Wyświetl plik

@ -12,9 +12,8 @@
"type": "platformio-debug", "type": "platformio-debug",
"request": "launch", "request": "launch",
"name": "PIO Debug", "name": "PIO Debug",
"executable": "/home/kevinh/development/meshtastic/meshtastic-esp32/.pio/build/bare/firmware.elf", "executable": "/home/kevinh/development/meshtastic/meshtastic-esp32/.pio/build/tbeam/firmware.elf",
"toolchainBinDir": "/home/kevinh/.platformio/packages/toolchain-gccarmnoneeabi/bin", "toolchainBinDir": "/home/kevinh/.platformio/packages/toolchain-xtensa32/bin",
"svdPath": "/home/kevinh/.platformio/platforms/nordicnrf52/misc/svd/nrf52840.svd",
"preLaunchTask": { "preLaunchTask": {
"type": "PlatformIO", "type": "PlatformIO",
"task": "Pre-Debug" "task": "Pre-Debug"
@ -25,9 +24,8 @@
"type": "platformio-debug", "type": "platformio-debug",
"request": "launch", "request": "launch",
"name": "PIO Debug (skip Pre-Debug)", "name": "PIO Debug (skip Pre-Debug)",
"executable": "/home/kevinh/development/meshtastic/meshtastic-esp32/.pio/build/bare/firmware.elf", "executable": "/home/kevinh/development/meshtastic/meshtastic-esp32/.pio/build/tbeam/firmware.elf",
"toolchainBinDir": "/home/kevinh/.platformio/packages/toolchain-gccarmnoneeabi/bin", "toolchainBinDir": "/home/kevinh/.platformio/packages/toolchain-xtensa32/bin",
"svdPath": "/home/kevinh/.platformio/platforms/nordicnrf52/misc/svd/nrf52840.svd",
"internalConsoleOptions": "openOnSessionStart" "internalConsoleOptions": "openOnSessionStart"
} }
] ]

Wyświetl plik

@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html ; https://docs.platformio.org/page/projectconf.html
[platformio] [platformio]
default_envs = bare default_envs = tbeam
[common] [common]
; default to a US frequency range, change it as needed for your region and hardware (CN, JP, EU433, EU865) ; default to a US frequency range, change it as needed for your region and hardware (CN, JP, EU433, EU865)

Wyświetl plik

@ -17,5 +17,6 @@ Now meshtastic is sharing layer two with disaster radio.
* make simulation code work with new API * make simulation code work with new API
* make disaster radio app work with new API * make disaster radio app work with new API
much later: later:
* implement naive flooding in the layer2 lib, use TTL limit max depth of broadcast
* allow packets to be filtered at the device level RX time based on dest addr (to avoid waking main CPU unnecessarily) * allow packets to be filtered at the device level RX time based on dest addr (to avoid waking main CPU unnecessarily)