add first approx to 3steppersLB

This commit is contained in:
Edward Emelianov
2021-10-22 22:34:16 +03:00
parent 8edd290483
commit 9ece1bd91e
38 changed files with 6481 additions and 2287 deletions

View File

@@ -24,6 +24,14 @@
#include <stdint.h>
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef TRUE_INLINE
#define TRUE_INLINE __attribute__((always_inline)) static inline
#endif