~ruther/qmk_firmware

c5221fa1cb1e903600205ba831c841f9d3aad33f — skullY 6 years ago 5fc2421
fix the led_matrix.h naming conflict
M quantum/led_matrix.c => quantum/led_matrix.c +1 -1
@@ 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"

M quantum/led_matrix_drivers.c => quantum/led_matrix_drivers.c +1 -1
@@ 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:
 *

R quantum/led_matrix.h => quantum/ledmatrix.h +0 -0
M quantum/quantum.h => quantum/quantum.h +1 -1
@@ 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