ardupilot/libraries/AP_Networking/lwip_hal/arch/evtimer.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
277 B
C
Raw Normal View History

2023-12-28 17:14:13 -04:00
/*
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>
2023-12-28 17:14:13 -04:00
#endif