mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Rename point_t
-> led_point_t
(#12864)
This commit is contained in:
parent
07800e82c9
commit
92fbadeb1b
4 changed files with 12 additions and 12 deletions
|
@ -28,9 +28,9 @@
|
|||
#include <lib/lib8tion/lib8tion.h>
|
||||
|
||||
#ifndef LED_MATRIX_CENTER
|
||||
const point_t k_led_matrix_center = {112, 32};
|
||||
const led_point_t k_led_matrix_center = {112, 32};
|
||||
#else
|
||||
const point_t k_led_matrix_center = LED_MATRIX_CENTER;
|
||||
const led_point_t k_led_matrix_center = LED_MATRIX_CENTER;
|
||||
#endif
|
||||
|
||||
// Generic effect runners
|
||||
|
|
|
@ -61,7 +61,7 @@ typedef struct PACKED {
|
|||
typedef struct PACKED {
|
||||
uint8_t x;
|
||||
uint8_t y;
|
||||
} point_t;
|
||||
} led_point_t;
|
||||
|
||||
#define HAS_FLAGS(bits, flags) ((bits & flags) == flags)
|
||||
#define HAS_ANY_FLAGS(bits, flags) ((bits & flags) != 0x00)
|
||||
|
@ -75,9 +75,9 @@ typedef struct PACKED {
|
|||
#define NO_LED 255
|
||||
|
||||
typedef struct PACKED {
|
||||
uint8_t matrix_co[MATRIX_ROWS][MATRIX_COLS];
|
||||
point_t point[DRIVER_LED_TOTAL];
|
||||
uint8_t flags[DRIVER_LED_TOTAL];
|
||||
uint8_t matrix_co[MATRIX_ROWS][MATRIX_COLS];
|
||||
led_point_t point[DRIVER_LED_TOTAL];
|
||||
uint8_t flags[DRIVER_LED_TOTAL];
|
||||
} led_config_t;
|
||||
|
||||
typedef union {
|
||||
|
|
|
@ -26,9 +26,9 @@
|
|||
#include <lib/lib8tion/lib8tion.h>
|
||||
|
||||
#ifndef RGB_MATRIX_CENTER
|
||||
const point_t k_rgb_matrix_center = {112, 32};
|
||||
const led_point_t k_rgb_matrix_center = {112, 32};
|
||||
#else
|
||||
const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
|
||||
const led_point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
|
||||
#endif
|
||||
|
||||
__attribute__((weak)) RGB rgb_matrix_hsv_to_rgb(HSV hsv) { return hsv_to_rgb(hsv); }
|
||||
|
|
|
@ -62,7 +62,7 @@ typedef struct PACKED {
|
|||
typedef struct PACKED {
|
||||
uint8_t x;
|
||||
uint8_t y;
|
||||
} point_t;
|
||||
} led_point_t;
|
||||
|
||||
#define HAS_FLAGS(bits, flags) ((bits & flags) == flags)
|
||||
#define HAS_ANY_FLAGS(bits, flags) ((bits & flags) != 0x00)
|
||||
|
@ -77,9 +77,9 @@ typedef struct PACKED {
|
|||
#define NO_LED 255
|
||||
|
||||
typedef struct PACKED {
|
||||
uint8_t matrix_co[MATRIX_ROWS][MATRIX_COLS];
|
||||
point_t point[DRIVER_LED_TOTAL];
|
||||
uint8_t flags[DRIVER_LED_TOTAL];
|
||||
uint8_t matrix_co[MATRIX_ROWS][MATRIX_COLS];
|
||||
led_point_t point[DRIVER_LED_TOTAL];
|
||||
uint8_t flags[DRIVER_LED_TOTAL];
|
||||
} led_config_t;
|
||||
|
||||
typedef union {
|
||||
|
|
Loading…
Reference in a new issue