Browse Source

LED drivers: use `PACKED` define from util.h (#22380)

pull/22398/head
Ryan 6 months ago
committed by GitHub
parent
commit
5d58534a8c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 41 additions and 25 deletions
  1. +2
    -1
      drivers/led/aw20216s.h
  2. +2
    -1
      drivers/led/issi/is31fl3218-simple.h
  3. +2
    -1
      drivers/led/issi/is31fl3218.h
  4. +2
    -1
      drivers/led/issi/is31fl3731-simple.h
  5. +2
    -1
      drivers/led/issi/is31fl3731.h
  6. +2
    -1
      drivers/led/issi/is31fl3733-simple.h
  7. +2
    -1
      drivers/led/issi/is31fl3733.h
  8. +2
    -1
      drivers/led/issi/is31fl3736-simple.h
  9. +2
    -1
      drivers/led/issi/is31fl3736.h
  10. +2
    -1
      drivers/led/issi/is31fl3737-simple.h
  11. +2
    -1
      drivers/led/issi/is31fl3737.h
  12. +4
    -3
      drivers/led/issi/is31fl3741-simple.h
  13. +6
    -5
      drivers/led/issi/is31fl3741.h
  14. +5
    -4
      drivers/led/issi/is31flcommon.h
  15. +2
    -1
      drivers/led/snled27351-simple.h
  16. +2
    -1
      drivers/led/snled27351.h

+ 2
- 1
drivers/led/aw20216s.h View File

@ -20,6 +20,7 @@
#include <stdbool.h>
#include "progmem.h"
#include "gpio.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_COUNT
@ -63,7 +64,7 @@ typedef struct aw20216s_led_t {
uint8_t r;
uint8_t g;
uint8_t b;
} aw20216s_led_t;
} PACKED aw20216s_led_t;
extern const aw20216s_led_t PROGMEM g_aw20216s_leds[AW20216S_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3218-simple.h View File

@ -19,6 +19,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
#define IS31FL3218_I2C_ADDRESS 0x54
@ -28,7 +29,7 @@
typedef struct is31fl3218_led_t {
uint8_t v;
} __attribute__((packed)) is31fl3218_led_t;
} PACKED is31fl3218_led_t;
extern const is31fl3218_led_t PROGMEM g_is31fl3218_leds[IS31FL3218_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3218.h View File

@ -19,6 +19,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
#define IS31FL3218_I2C_ADDRESS 0x54
@ -30,7 +31,7 @@ typedef struct is31fl3218_led_t {
uint8_t r;
uint8_t g;
uint8_t b;
} __attribute__((packed)) is31fl3218_led_t;
} PACKED is31fl3218_led_t;
extern const is31fl3218_led_t PROGMEM g_is31fl3218_leds[IS31FL3218_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3731-simple.h View File

@ -21,6 +21,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef LED_DRIVER_ADDR_1
@ -64,7 +65,7 @@
typedef struct is31fl3731_led_t {
uint8_t driver : 2;
uint8_t v;
} __attribute__((packed)) is31fl3731_led_t;
} PACKED is31fl3731_led_t;
extern const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3731.h View File

@ -20,6 +20,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_ADDR_1
@ -65,7 +66,7 @@ typedef struct is31fl3731_led_t {
uint8_t r;
uint8_t g;
uint8_t b;
} __attribute__((packed)) is31fl3731_led_t;
} PACKED is31fl3731_led_t;
extern const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3733-simple.h View File

@ -23,6 +23,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef LED_DRIVER_COUNT
@ -83,7 +84,7 @@
typedef struct is31fl3733_led_t {
uint8_t driver : 2;
uint8_t v;
} __attribute__((packed)) is31fl3733_led_t;
} PACKED is31fl3733_led_t;
extern const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3733.h View File

@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_ADDR_1
@ -108,7 +109,7 @@ typedef struct is31fl3733_led_t {
uint8_t r;
uint8_t g;
uint8_t b;
} __attribute__((packed)) is31fl3733_led_t;
} PACKED is31fl3733_led_t;
extern const is31fl3733_led_t PROGMEM g_is31fl3733_leds[IS31FL3733_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3736-simple.h View File

@ -20,6 +20,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_COUNT
@ -78,7 +79,7 @@
typedef struct is31fl3736_led_t {
uint8_t driver : 2;
uint8_t v;
} __attribute__((packed)) is31fl3736_led_t;
} PACKED is31fl3736_led_t;
extern const is31fl3736_led_t PROGMEM g_is31fl3736_leds[IS31FL3736_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3736.h View File

@ -20,6 +20,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_ADDR_1
@ -92,7 +93,7 @@ typedef struct is31fl3736_led_t {
uint8_t r;
uint8_t g;
uint8_t b;
} __attribute__((packed)) is31fl3736_led_t;
} PACKED is31fl3736_led_t;
extern const is31fl3736_led_t PROGMEM g_is31fl3736_leds[IS31FL3736_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3737-simple.h View File

@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_COUNT
@ -68,7 +69,7 @@
typedef struct is31fl3737_led_t {
uint8_t driver : 2;
uint8_t v;
} __attribute__((packed)) is31fl3737_led_t;
} PACKED is31fl3737_led_t;
extern const is31fl3737_led_t PROGMEM g_is31fl3737_leds[IS31FL3737_LED_COUNT];


+ 2
- 1
drivers/led/issi/is31fl3737.h View File

@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_ADDR_1
@ -85,7 +86,7 @@ typedef struct is31fl3737_led_t {
uint8_t r;
uint8_t g;
uint8_t b;
} __attribute__((packed)) is31fl3737_led_t;
} PACKED is31fl3737_led_t;
extern const is31fl3737_led_t PROGMEM g_is31fl3737_leds[IS31FL3737_LED_COUNT];


+ 4
- 3
drivers/led/issi/is31fl3741-simple.h View File

@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_COUNT
@ -66,9 +67,9 @@
#endif
typedef struct is31fl3741_led_t {
uint32_t driver : 2;
uint32_t v : 10;
} __attribute__((packed)) is31fl3741_led_t;
uint8_t driver : 2;
uint16_t v : 9;
} PACKED is31fl3741_led_t;
extern const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT];


+ 6
- 5
drivers/led/issi/is31fl3741.h View File

@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_ADDR_1
@ -81,11 +82,11 @@
#endif
typedef struct is31fl3741_led_t {
uint32_t driver : 2;
uint32_t r : 10;
uint32_t g : 10;
uint32_t b : 10;
} __attribute__((packed)) is31fl3741_led_t;
uint8_t driver : 2;
uint16_t r : 9;
uint16_t g : 9;
uint16_t b : 9;
} PACKED is31fl3741_led_t;
extern const is31fl3741_led_t PROGMEM g_is31fl3741_leds[IS31FL3741_LED_COUNT];


+ 5
- 4
drivers/led/issi/is31flcommon.h View File

@ -23,6 +23,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// Which variant header file to use
#if defined(LED_MATRIX_IS31FL3742A) || defined(RGB_MATRIX_IS31FL3742A)
@ -37,19 +38,19 @@
#ifdef RGB_MATRIX_ENABLE
typedef struct is31_led {
uint8_t driver;
uint8_t driver : 2;
uint8_t r;
uint8_t g;
uint8_t b;
} __attribute__((packed)) is31_led;
} PACKED is31_led;
extern const is31_led PROGMEM g_is31_leds[RGB_MATRIX_LED_COUNT];
#elif defined(LED_MATRIX_ENABLE)
typedef struct is31_led {
uint8_t driver;
uint8_t driver : 2;
uint8_t v;
} __attribute__((packed)) is31_led;
} PACKED is31_led;
extern const is31_led PROGMEM g_is31_leds[LED_MATRIX_LED_COUNT];
#endif


+ 2
- 1
drivers/led/snled27351-simple.h View File

@ -19,6 +19,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_COUNT
@ -66,7 +67,7 @@
typedef struct snled27351_led_t {
uint8_t driver : 2;
uint8_t v;
} __attribute__((packed)) snled27351_led_t;
} PACKED snled27351_led_t;
extern const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT];


+ 2
- 1
drivers/led/snled27351.h View File

@ -19,6 +19,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "progmem.h"
#include "util.h"
// ======== DEPRECATED DEFINES - DO NOT USE ========
#ifdef DRIVER_COUNT
@ -80,7 +81,7 @@ typedef struct snled27351_led_t {
uint8_t r;
uint8_t g;
uint8_t b;
} __attribute__((packed)) snled27351_led_t;
} PACKED snled27351_led_t;
extern const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT];


Loading…
Cancel
Save