Browse Source

fix the led_matrix.h naming conflict

pull/5097/head 0.6.273
skullY 5 years ago
committed by skullydazed
parent
commit
c5221fa1cb
4 changed files with 3 additions and 3 deletions
  1. +1
    -1
      quantum/led_matrix.c
  2. +1
    -1
      quantum/led_matrix_drivers.c
  3. +0
    -0
      quantum/ledmatrix.h
  4. +1
    -1
      quantum/quantum.h

+ 1
- 1
quantum/led_matrix.c View File

@ -20,7 +20,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "quantum.h"
#include "led_matrix.h"
#include "ledmatrix.h"
#include "progmem.h"
#include "config.h"
#include "eeprom.h"


+ 1
- 1
quantum/led_matrix_drivers.c View File

@ -18,7 +18,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "quantum.h"
#include "led_matrix.h"
#include "ledmatrix.h"
/* Each driver needs to define a struct:
*


quantum/led_matrix.h → quantum/ledmatrix.h View File


+ 1
- 1
quantum/quantum.h View File

@ -29,7 +29,7 @@
#include "keymap.h"
#ifdef BACKLIGHT_ENABLE
#ifdef LED_MATRIX_ENABLE
#include "led_matrix.h"
#include "ledmatrix.h"
#else
#include "backlight.h"
#endif


Loading…
Cancel
Save