This commit is contained in:
2025-05-04 00:41:52 +02:00
parent 6123cd0fe3
commit 0e7dfe61ab
2 changed files with 4 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
"idf.openOcdConfigs": [ "idf.openOcdConfigs": [
"board/esp32s3-builtin.cfg" "board/esp32s3-builtin.cfg"
], ],
"idf.port": "/dev/ttyUSB1", "idf.port": "/dev/ttyUSB0",
"idf.toolsPath": "/home/bruno/.espressif", "idf.toolsPath": "/home/bruno/.espressif",
"idf.customExtraVars": { "idf.customExtraVars": {
"OPENOCD_SCRIPTS": "/home/bruno/.espressif/tools/openocd-esp32/v0.12.0-esp32-20240821/openocd-esp32/share/openocd/scripts", "OPENOCD_SCRIPTS": "/home/bruno/.espressif/tools/openocd-esp32/v0.12.0-esp32-20240821/openocd-esp32/share/openocd/scripts",
@@ -21,7 +21,8 @@
"string_view": "c", "string_view": "c",
"span": "c", "span": "c",
"esp_timer.h": "c", "esp_timer.h": "c",
"sx1262.h": "c" "sx1262.h": "c",
"uart.h": "c"
}, },
"idf.flashBaudRate": "921600", "idf.flashBaudRate": "921600",
"idf.monitorBaudRate": "921600", "idf.monitorBaudRate": "921600",

View File

@@ -24,7 +24,7 @@ typedef struct __attribute__((packed))
char syncPhrase[10]; char syncPhrase[10];
uint32_t packetIndex; uint32_t packetIndex;
uint8_t packetType; uint8_t packetType;
uint32_t missionTimer; uint64_t missionTimer;
uint32_t CRCCheck; uint32_t CRCCheck;
} DownBoundPacket; } DownBoundPacket;