mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
535a6a3316
the firmware server uses --out option to waf configure which changes the include paths
12 lines
277 B
C
12 lines
277 B
C
/*
|
|
wrapper around evtimer.c so we only build when events are
|
|
enabled. This prevents a complex check in the ChibiOS mk layer
|
|
*/
|
|
#include <hal.h>
|
|
|
|
#if CH_CFG_USE_EVENTS
|
|
// this include relies on -I for modules/ChibiOS/os/various/cpp_wrappers
|
|
#include <../evtimer.c>
|
|
#endif
|
|
|