-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
87 lines (82 loc) · 1.54 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
CSRC = $(shell find src -name "*.c")
INCDIR = ./include
USE_OPT = -Os -g
USE_PROCESS_STACKSIZE = 1152
USE_EXCEPTIONS_STACKSIZE = 256
MODULES_ENABLED = \
chibios_sys_init \
chibios_hal_init \
app_descriptor \
boot_msg \
timing \
system \
pubsub \
worker_thread \
can_driver_stm32 \
can \
can_autobaud \
flash \
param \
uavcan \
uavcan_debug \
uavcan_nodestatus_publisher \
uavcan_getnodeinfo_server \
uavcan_beginfirmwareupdate_server \
uavcan_allocatee \
uavcan_restart \
uavcan_param_interface \
gps \
spi_device \
driver_ak09916 \
driver_icm20x48 \
driver_profiLED \
driver_ms5611 \
freemem_check \
stack_measurement \
load_measurement \
pubsub_miss_measurement
MESSAGES_ENABLED = \
uavcan.protocol.debug.LogMessage \
uavcan.protocol.debug.KeyValue \
uavcan.equipment.gnss.Fix \
uavcan.equipment.gnss.Fix2 \
uavcan.equipment.gnss.Auxiliary \
uavcan.equipment.ahrs.MagneticFieldStrength \
uavcan.equipment.gnss.RTCMStream \
uavcan.equipment.gnss.ECEFPositionVelocity \
uavcan.protocol.param.GetSet \
uavcan.equipment.indication.LightsCommand \
uavcan.equipment.indication.SingleLightCommand \
uavcan.equipment.indication.RGB565 \
uavcan.equipment.air_data.StaticPressure \
uavcan.equipment.air_data.StaticTemperature
UBX_MESSAGES_ENABLED = \
ACK-ACK \
ACK-NAK \
CFG-CFG \
CFG-DGNSS \
CFG-GNSS \
CFG-RATE \
CFG-MSG1 \
CFG-MSG \
CFG-PRT \
CFG-GNSS \
CFG-SBAS \
CFG-NAV5 \
MON-HW \
MON-HW2 \
MON-VER \
MON-IO \
MON-MSGPP \
MON-RXBUF \
NAV-SOL \
NAV-SVINFO \
NAV-STATUS \
NAV-POSLLH \
NAV-VELNED \
NAV-DOP \
NAV-PVT \
NAV-EOE \
RXM-RAWX \
RXM-RTCM
include framework/include.mk