Skip to content

Commit cfd68a9

Browse files
committed
Fix compile for star6c
1 parent 694221a commit cfd68a9

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ This keywords can be added using the PilotName/CraftName fields(INAV/BF/Ardu), o
142142
### Usage Example:
143143

144144
```
145-
msposd --master /dev/ttyS2 --baudrate 115200 -c 7 -c 9 --out 127.0.0.1:14555 -osd -r 20 --ahi 1 -v
145+
msposd --master /dev/ttyS2 --baudrate 115200 -c 7 -c 9 -osd -r 20 --ahi 1 -v
146146
```
147147
Read on UART2 with baudrade 115200 and listen for value changes of RC channel 7 and channel 9 that come from the Remote Control via Flight Controller.
148148
Every time the value is changed with more than 5% the bash script ```channels.sh {Channel} {Value}``` will be started with the provided parameters.

bmp/region.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33

44
#if defined(__INFINITY6C__)
5-
#include "bmp/star/i6c_hal.h" // always include prototypes
6-
#include "bmp/star/i6c_hal.c"
5+
#include "star/i6c_hal.h" // always include prototypes
6+
#include "star/i6c_hal.c"
77
#endif
88

99

develepment_notes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ msposd --channels 7 --master /dev/ttyUSB0 --baudrate 115200 --out 127.0.0.1:1455
1717
make osd-x86 VERBOSE=1
1818

1919
./build.sh star6e
20-
./build.sh x86
20+
./build.sh native
2121

2222
cc msposd.c -I ./include -L/usr/lib/x86_64-linux-gnu/ -lcsfml-graphics -lcsfml-window -lcsfml-system -O1 -g -fsanitize=address -fno-omit-frame-pointer -Wall -Wextra -D_x86 -g -fsanitize=address -levent_core -o msposd
2323

0 commit comments

Comments
 (0)