0
0
Fork 0

main: Add feature flag for GNSS module

This commit is contained in:
Jannik Beyerstedt 2026-06-15 21:36:34 +02:00
commit 57a6b7983d
4 changed files with 19 additions and 4 deletions

View file

@ -30,16 +30,17 @@ esp = [
"dep:esp-backtrace",
"dep:esp-println",
"dep:esp-radio",
"dep:embassy_gps",
]
std = ["c-its-parser/std"]
# enable L67K GNSS module
gnss = ["dep:embassy_gps"]
# echo CAM data on serial
cam = ["c-its-parser/cam"]
# echo DENM events on serial and BLE
denm = ["c-its-parser/denm"]
# evaluate SPAT information
spat = ["c-its-parser/spatem", "c-its-parser/mapem"]
spat = ["gnss", "c-its-parser/spatem", "c-its-parser/mapem"]
# enable some debug printing (without enabling debug logging of the ESP RTOS)
spat_debug = []