File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 17
17
* along with this program. If not, see <http://www.gnu.org/licenses/>.
18
18
*/
19
19
20
- #include <stdint.h>
21
- #include <stdbool.h>
22
- #include "quantum.h"
23
20
#include "led_matrix.h"
24
21
#include "progmem.h"
25
22
#include "config.h"
Original file line number Diff line number Diff line change 19
19
20
20
#pragma once
21
21
22
+ #include <stdint.h>
23
+ #include <stdbool.h>
22
24
#include "led_matrix_types.h"
25
+ #include "quantum.h"
26
+
27
+ #ifdef IS31FL3731
28
+ # include "is31fl3731-simple.h"
29
+ #endif
23
30
24
31
enum led_matrix_effects {
25
32
LED_MATRIX_UNIFORM_BRIGHTNESS = 1 ,
Original file line number Diff line number Diff line change 15
15
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16
16
*/
17
17
18
- #include <stdint.h>
19
- #include <stdbool.h>
20
- #include "quantum.h"
21
18
#include "led_matrix.h"
22
19
23
20
/* Each driver needs to define a struct:
30
27
31
28
#if defined(IS31FL3731 ) || defined(IS31FL3733 )
32
29
33
- # if defined(IS31FL3731 )
34
- # include "is31fl3731-simple.h"
35
- # endif
36
-
37
30
# include "i2c_master.h"
38
31
39
32
static void init (void ) {
You can’t perform that action at this time.
0 commit comments