Skip to content

Commit

Permalink
Merge pull request qmk#120 from joshuataylor/feature/fix-keychron_com…
Browse files Browse the repository at this point in the history
…mon-import

Add missing include keychron_common.h for ansi_encoder
  • Loading branch information
KeychronMacro authored Apr 18, 2023
2 parents 942130c + 9df6010 commit eedf3aa
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions keyboards/keychron/q10/q10.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b1111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/q12/q12.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

// clang-format off
const matrix_row_t matrix_mask[] = {
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/q5/q5.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b111111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/q6/q6.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b11111111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/q65/q65.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b1111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/q8/q8.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/q9/q9.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/v1/v1.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ bool dip_switch_update_kb(uint8_t index, bool active) {
#endif

#if defined(ENCODER_ENABLE) && defined(PAL_USE_CALLBACKS)
#include "keychron_common.h"

void keyboard_post_init_kb(void) {
keyboard_post_init_keychron();
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/v10/v10.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b1111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/v2/v2.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/v3/v3.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

// clang-format off

Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/v5/v5.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b111111111111111111,
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/v6/v6.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

// clang-format off
const matrix_row_t matrix_mask[] = {
Expand Down
1 change: 1 addition & 0 deletions keyboards/keychron/v8/v8.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

#include "quantum.h"
#include "keychron_common.h"

const matrix_row_t matrix_mask[] = {
0b111111111111111,
Expand Down

0 comments on commit eedf3aa

Please sign in to comment.