File tree Expand file tree Collapse file tree 4 files changed +26
-3
lines changed
Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ CSRC = $(PORTSRC) \
7979 $(BOARDSRC) \
8080 $(CHIBIOS)/os/various/lis302dl.c \
8181 $(CHIBIOS)/os/various/chprintf.c \
82- $(CHIBIOS)/os/various/shell .c \
82+ comms .c \
8383 TinyGPS.c \
8484 Motors.c \
8585 Spektrum.c \
Original file line number Diff line number Diff line change 1+ /*
2+ ChibiCopter - https://github.com/grantmd/ChibiCopter
3+ A quadcopter platform running under ChibiOS/RT.
4+
5+ Handles communication with the ground/other UAVs and robots using mavlink
6+ */
7+
8+ #include "ch.h"
9+ #include "hal.h"
10+
11+ #include "comms.h"
12+
13+ #include <mavlink.h>
Original file line number Diff line number Diff line change 1+ /*
2+ ChibiCopter - https://github.com/grantmd/ChibiCopter
3+ A quadcopter platform running under ChibiOS/RT.
4+
5+ Handles communication with the ground/other UAVs and robots using mavlink
6+ */
7+
8+ #ifndef _COMMS_H_
9+ #define _COMMS_H_
10+
11+ #endif /* _COMMS_H_ */
Original file line number Diff line number Diff line change 1313#include "lis302dl.h"
1414#include "chprintf.h"
1515
16- #include <mavlink.h>
17-
16+ #include "comms.h"
1817#include "TinyGPS.h"
1918#include "Motors.h"
2019#include "Spektrum.h"
You can’t perform that action at this time.
0 commit comments