Normalise include statements in keyboard code (#11185)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
#include "quantum.h"
|
#include "quantum.h"
|
||||||
#include "serial.h"
|
#include "serial.h"
|
||||||
#include "printf.h"
|
#include "print.h"
|
||||||
|
|
||||||
#include <ch.h>
|
#include <ch.h>
|
||||||
#include <hal.h>
|
#include <hal.h>
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "util/font5x7.h"
|
#include "util/font5x7.h"
|
||||||
#include "util/font8x16.h"
|
#include "util/font8x16.h"
|
||||||
#include "string.h"
|
#include <string.h>
|
||||||
|
|
||||||
#define TOTALFONTS 2
|
#define TOTALFONTS 2
|
||||||
const unsigned char* fonts_pointer[] = {font5x7, font8x16};
|
const unsigned char* fonts_pointer[] = {font5x7, font8x16};
|
||||||
|
|||||||
@@ -18,10 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "hal.h"
|
#include <hal.h>
|
||||||
#include "timer.h"
|
#include "timer.h"
|
||||||
#include "wait.h"
|
#include "wait.h"
|
||||||
#include "printf.h"
|
#include "print.h"
|
||||||
#include "matrix.h"
|
#include "matrix.h"
|
||||||
#include "action.h"
|
#include "action.h"
|
||||||
#include "keycode.h"
|
#include "keycode.h"
|
||||||
|
|||||||
@@ -14,8 +14,8 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
#include "ez.h"
|
#include "ez.h"
|
||||||
#include "ch.h"
|
#include <ch.h>
|
||||||
#include "hal.h"
|
#include <hal.h>
|
||||||
|
|
||||||
keyboard_config_t keyboard_config;
|
keyboard_config_t keyboard_config;
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
*/
|
*/
|
||||||
#include "voices.h"
|
#include "voices.h"
|
||||||
#include "audio.h"
|
#include "audio.h"
|
||||||
#include "stdlib.h"
|
#include <stdlib.h>
|
||||||
|
|
||||||
// these are imported from audio.c
|
// these are imported from audio.c
|
||||||
extern uint16_t envelope_index;
|
extern uint16_t envelope_index;
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "stdint.h"
|
#include <stdint.h>
|
||||||
#include "stdbool.h"
|
#include <stdbool.h>
|
||||||
|
|
||||||
/* FIXME: Add doxygen comments here. */
|
/* FIXME: Add doxygen comments here. */
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#include "progmem.h"
|
#include "progmem.h"
|
||||||
#include "stddef.h"
|
#include <stddef.h>
|
||||||
#include "inttypes.h"
|
#include <inttypes.h>
|
||||||
|
|
||||||
#define ATTR_PACKED __attribute__((packed))
|
#define ATTR_PACKED __attribute__((packed))
|
||||||
/** Concatenates the given input into a single token, via the C Preprocessor.
|
/** Concatenates the given input into a single token, via the C Preprocessor.
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
#include "led.h"
|
#include "led.h"
|
||||||
#include "sendchar.h"
|
#include "sendchar.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "printf.h"
|
#include "print.h"
|
||||||
|
|
||||||
#ifndef EARLY_INIT_PERFORM_BOOTLOADER_JUMP
|
#ifndef EARLY_INIT_PERFORM_BOOTLOADER_JUMP
|
||||||
// Change this to be TRUE once we've migrated keyboards to the new init system
|
// Change this to be TRUE once we've migrated keyboards to the new init system
|
||||||
|
|||||||
Reference in New Issue
Block a user