Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot committed Feb 15, 2022
2 parents 23c238a + ac8bee7 commit c9f192b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 15 deletions.
1 change: 0 additions & 1 deletion keyboards/handwired/aball/aball.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,3 @@
*/

#include "aball.h"
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { };
10 changes: 1 addition & 9 deletions keyboards/handwired/aball/aball.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,4 @@

#include "quantum.h"

/* This is a shortcut to help you visually see your layout.
*
* The first section contains all of the arguments representing the physical
* layout of the board and position of the keys.
*
* The second converts the arguments into a two-dimensional array which
* represents the switch matrix.
*/
#define LAYOUT(k00) {{ KC_NO }}
#define LAYOUT(k00) {{ k00 }}
3 changes: 2 additions & 1 deletion keyboards/handwired/aball/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@
*/
#include QMK_KEYBOARD_H


// Dummy
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {{ KC_NO }};
3 changes: 2 additions & 1 deletion keyboards/ploopyco/trackball_nano/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@

// safe range starts at `PLOOPY_SAFE_RANGE` instead.

// placeholder file so it will compile
// Dummy
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {{ KC_NO }};
3 changes: 3 additions & 0 deletions keyboards/ploopyco/trackball_nano/keymaps/maddie/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ uint8_t lock_state = 0;
int8_t delta_x = 0;
int8_t delta_y = 0;

// Dummy
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {{ KC_NO }};

void process_mouse_user(report_mouse_t *mouse_report, int8_t x, int8_t y) {
if (scroll_enabled) {
delta_x += x;
Expand Down
2 changes: 0 additions & 2 deletions keyboards/ploopyco/trackball_nano/trackball_nano.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@
# define PLOOPY_DPI_DEFAULT 2
#endif

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { };

keyboard_config_t keyboard_config;
uint16_t dpi_array[] = PLOOPY_DPI_OPTIONS;
#define DPI_OPTION_SIZE (sizeof(dpi_array) / sizeof(uint16_t))
Expand Down
2 changes: 1 addition & 1 deletion keyboards/ploopyco/trackball_nano/trackball_nano.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include "quantum.h"

#define LAYOUT(k00) {{ KC_NO }}
#define LAYOUT(k00) {{ k00 }}

typedef union {
uint32_t raw;
Expand Down

0 comments on commit c9f192b

Please sign in to comment.