1
0

Add compiler_support.h (#25274)

This commit is contained in:
Pablo Martínez
2025-05-22 15:31:15 +02:00
committed by GitHub
parent fa24b0fcce
commit 955809bd5a
36 changed files with 142 additions and 81 deletions

View File

@@ -16,6 +16,8 @@
#pragma once
#include "compiler_support.h"
// DEPRECATED DEFINES - DO NOT USE
#if defined(RGBLED_NUM)
# define RGBLIGHT_LED_COUNT RGBLED_NUM
@@ -260,7 +262,7 @@ typedef union rgblight_config_t {
};
} rgblight_config_t;
_Static_assert(sizeof(rgblight_config_t) == sizeof(uint64_t), "RGB Light EECONFIG out of spec.");
STATIC_ASSERT(sizeof(rgblight_config_t) == sizeof(uint64_t), "RGB Light EECONFIG out of spec.");
typedef struct _rgblight_status_t {
uint8_t base_mode;