mirror of
https://github.com/ADElectronics/RTL00_WEB_WS2812.git
synced 2025-01-15 15:55:17 +00:00
11 lines
262 B
C
11 lines
262 B
C
|
#ifndef _MACRO_COMMON_H_
|
||
|
#define _MACRO_COMMON_H_
|
||
|
|
||
|
#define min(a,b) ((a) < (b) ? (a) : (b))
|
||
|
#define max(a,b) ((a) > (b) ? (a) : (b))
|
||
|
#define scale_up(x) ((x) << 8)
|
||
|
#define scale_down(x) ((x) >> 8)
|
||
|
|
||
|
#endif // _MACRO_COMMON_H_
|
||
|
|