mirror of
https://github.com/andreili/katapult.git
synced 2025-08-24 03:44:06 +02:00
Add the sched.c code and associated DECL_INIT(), DECL_TASK() macros so that it is easier to import low-level Klipper code into the CanBoot repo. These additional code wrappers do not increase the overall binary size as gcc does a good job of inlining the wrappers and removing unused code during the compile process. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
7 lines
88 B
C
7 lines
88 B
C
#ifndef __LED_H
|
|
#define __LED_H
|
|
|
|
void check_blink_time(uint32_t usec);
|
|
|
|
#endif // led.h
|