mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-23 18:56:38 +00:00
Fix one of many warnings
This commit is contained in:
parent
5594598364
commit
0815311e3a
@ -394,8 +394,8 @@ const char kWebColors[] PROGMEM =
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#endif
|
||||
|
||||
#define AGPIO(x) (x<<5)
|
||||
#define BGPIO(x) (x>>5)
|
||||
#define AGPIO(x) ((x)<<5)
|
||||
#define BGPIO(x) ((x)>>5)
|
||||
|
||||
#ifdef USE_DEVICE_GROUPS
|
||||
#define SendDeviceGroupMessage(DEVICE_INDEX, REQUEST_TYPE, ...) _SendDeviceGroupMessage(DEVICE_INDEX, REQUEST_TYPE, __VA_ARGS__, 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user