2 Commits

Author SHA1 Message Date
Priec
19dec1ee05 removed trash 2025-11-13 22:27:39 +01:00
Priec
071e344597 fixed 2025-11-13 22:25:40 +01:00
5 changed files with 137284 additions and 2 deletions

View File

@@ -53,6 +53,7 @@
pkgs.stlink pkgs.stlink
pkgs.probe-rs pkgs.probe-rs
pkgs.probe-rs-tools pkgs.probe-rs-tools
pkgs.bear
mbedTools mbedTools
pyOcd pyOcd
]; ];

8
hod6/.clangd Normal file
View File

@@ -0,0 +1,8 @@
CompileFlags:
Add:
-isystem
/nix/store/ih9psjpxn2pbbzw4klr9s6hmmngc52n8-gcc-arm-embedded-14.3.rel1/arm-none-eabi/include
-isystem
/nix/store/ih9psjpxn2pbbzw4klr9s6hmmngc52n8-gcc-arm-embedded-14.3.rel1/lib/gcc/arm-none-eabi/14.3.0/include
-isystem
/nix/store/ih9psjpxn2pbbzw4klr9s6hmmngc52n8-gcc-arm-embedded-14.3.rel1/lib/gcc/arm-none-eabi/14.3.0/include-fixed

1
hod6/.gitignore vendored
View File

@@ -20,3 +20,4 @@ mbed-os/
*.log *.log
*.pyc *.pyc
__pycache__/ __pycache__/
.cache/

137272
hod6/compile_commands.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -4,9 +4,9 @@
#define TARGET_TX_PIN USBTX #define TARGET_TX_PIN USBTX
#define TARGET_RX_PIN USBRX #define TARGET_RX_PIN USBRX
#define BAUD_RATE 1843200 // #define BAUD_RATE 1843200
// #define BAUD_RATE 460800
// #define BAUD_RATE 921600 // #define BAUD_RATE 921600
#define BAUD_RATE 460800
static BufferedSerial serial_port(TARGET_TX_PIN, TARGET_RX_PIN, BAUD_RATE); static BufferedSerial serial_port(TARGET_TX_PIN, TARGET_RX_PIN, BAUD_RATE);