Normalise include statements in keyboard code (#11185)

This commit is contained in:
Ryan
2020-12-16 14:27:23 +11:00
committed by Drashna Jael're
parent a0eb53cb16
commit 664f5de687
8 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
#include "quantum.h"
#include "serial.h"
#include "printf.h"
#include "print.h"
#include <ch.h>
#include <hal.h>

View File

@@ -32,7 +32,7 @@
#include <stdlib.h>
#include "util/font5x7.h"
#include "util/font8x16.h"
#include "string.h"
#include <string.h>
#define TOTALFONTS 2
const unsigned char* fonts_pointer[] = {font5x7, font8x16};

View File

@@ -18,10 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include "hal.h"
#include <hal.h>
#include "timer.h"
#include "wait.h"
#include "printf.h"
#include "print.h"
#include "matrix.h"
#include "action.h"
#include "keycode.h"

View File

@@ -14,8 +14,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ez.h"
#include "ch.h"
#include "hal.h"
#include <ch.h>
#include <hal.h>
keyboard_config_t keyboard_config;

View File

@@ -15,7 +15,7 @@
*/
#include "voices.h"
#include "audio.h"
#include "stdlib.h"
#include <stdlib.h>
// these are imported from audio.c
extern uint16_t envelope_index;

View File

@@ -17,8 +17,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include "stdint.h"
#include "stdbool.h"
#include <stdint.h>
#include <stdbool.h>
/* FIXME: Add doxygen comments here. */

View File

@@ -1,6 +1,6 @@
#include "progmem.h"
#include "stddef.h"
#include "inttypes.h"
#include <stddef.h>
#include <inttypes.h>
#define ATTR_PACKED __attribute__((packed))
/** Concatenates the given input into a single token, via the C Preprocessor.

View File

@@ -31,7 +31,7 @@
#include "led.h"
#include "sendchar.h"
#include "debug.h"
#include "printf.h"
#include "print.h"
#ifndef EARLY_INIT_PERFORM_BOOTLOADER_JUMP
// Change this to be TRUE once we've migrated keyboards to the new init system