mirror of
https://github.com/ADElectronics/RTL00_WEB_WS2812.git
synced 2025-01-15 12:45:16 +00:00
10 lines
262 B
C
10 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_
|
|
|