1
0
Fork 0

Normalise include statements in keyboard code (#11185)

This commit is contained in:
Ryan 2020-12-16 14:27:23 +11:00 committed by GitHub
parent 37fb14f1b5
commit 9366ed7282
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
81 changed files with 108 additions and 291 deletions

View file

@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#pragma once
#include <config_common.h>
#include "config_common.h"
/* USB Device descriptor parameter */
#define VENDOR_ID 0x1209

View file

@ -13,10 +13,10 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <quantum.h>
#include <i2c_master.h>
#include <led_tables.h>
#include <rgb_matrix.h>
#include "quantum.h"
#include "i2c_master.h"
#include "led_tables.h"
#include "rgb_matrix.h"
#include <string.h>
#include "model01.h"

View file

@ -15,8 +15,8 @@
*/
#pragma once
#include <quantum.h>
#include <rgb_matrix.h>
#include "quantum.h"
#include "rgb_matrix.h"
void set_all_leds_to(uint8_t r, uint8_t g, uint8_t b);
void set_led_to(int led, uint8_t r, uint8_t g, uint8_t b);

View file

@ -13,8 +13,8 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <quantum.h>
#include <i2c_master.h>
#include "quantum.h"
#include "i2c_master.h"
#include <string.h>
#include "model01.h"

View file

@ -13,8 +13,8 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <quantum.h>
#include <i2c_master.h>
#include "quantum.h"
#include "i2c_master.h"
#include <string.h>
#include "model01.h"

View file

@ -15,7 +15,7 @@
*/
#pragma once
#include <quantum.h>
#include "quantum.h"
#define LAYOUT( \
L07, L06, L05, L04, L03, L02, R05, R04, R03, R02, R01, R00, \