Removed unecessary edits
This commit is contained in:
parent
eda0a9b962
commit
aa5b5bce6d
@ -83,7 +83,6 @@
|
|||||||
#include "dev/gpio-hal.h"
|
#include "dev/gpio-hal.h"
|
||||||
#include "sys/clock.h"
|
#include "sys/clock.h"
|
||||||
#include "sys/ctimer.h"
|
#include "sys/ctimer.h"
|
||||||
#include "sys/process.h"
|
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
@ -103,8 +103,6 @@
|
|||||||
|
|
||||||
#ifdef CC_CONF_ALIGN
|
#ifdef CC_CONF_ALIGN
|
||||||
#define CC_ALIGN(n) CC_CONF_ALIGN(n)
|
#define CC_ALIGN(n) CC_CONF_ALIGN(n)
|
||||||
#else
|
|
||||||
#define CC_ALIGN(n)
|
|
||||||
#endif /* CC_CONF_INLINE */
|
#endif /* CC_CONF_INLINE */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -147,10 +145,6 @@
|
|||||||
#define ABS(n) (((n) < 0) ? -(n) : (n))
|
#define ABS(n) (((n) < 0) ? -(n) : (n))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CLAMP
|
|
||||||
#define CLAMP(v, vmin, vmax) (MAX(MIN(v, vmax), vmin))
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#define CC_CONCAT2(s1, s2) s1##s2
|
#define CC_CONCAT2(s1, s2) s1##s2
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user