diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-15 00:12:32 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-11-19 20:15:12 -0700 |
commit | 0011fcb2328cf387225a72eee7bdc3d8ea31d71d (patch) | |
tree | a442c0d2b7ebc36cde726ccdcdeb5016de2b5d66 /libhw | |
parent | 0360ef3a038c8c3f6f252fdc8f1b91e4cbdd4e39 (diff) |
build-sys: Minimize the pico-sdk runtime
Diffstat (limited to 'libhw')
-rw-r--r-- | libhw/rp2040_hwtimer.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libhw/rp2040_hwtimer.c b/libhw/rp2040_hwtimer.c index 69c2a50..6f37d85 100644 --- a/libhw/rp2040_hwtimer.c +++ b/libhw/rp2040_hwtimer.c @@ -15,6 +15,11 @@ #include <libhw/generic/alarmclock.h> #include <libhw/rp2040_hwtimer.h> +/******************************************************************************/ + +/** Conflict with pico-sdk:pico_time:!PICO_TIME_DEFAULT_ALARM_POOL_DISABLED. */ +void add_alarm_at(void) {}; + /* Types **********************************************************************/ struct rp2040_hwtimer { |