Browse Source

Fix the naming for clueboard files

pull/1880/head
skullY 6 years ago
parent
commit
9bb259b660
35 changed files with 30 additions and 30 deletions
  1. +1
    -1
      docs/contributing.md
  2. +1
    -1
      keyboards/clueboard/17/17.c
  3. +0
    -0
      keyboards/clueboard/17/17.h
  4. +1
    -1
      keyboards/clueboard/17/keymaps/default/keymap.c
  5. +1
    -1
      keyboards/clueboard/60/60.c
  6. +0
    -0
      keyboards/clueboard/60/60.h
  7. +1
    -1
      keyboards/clueboard/60/keymaps/default/keymap.c
  8. +1
    -1
      keyboards/clueboard/60/keymaps/default_aek/keymap.c
  9. +1
    -0
      keyboards/clueboard/66/66.c
  10. +0
    -0
      keyboards/clueboard/66/66.h
  11. +0
    -1
      keyboards/clueboard/66/clueboard_66.c
  12. +1
    -1
      keyboards/clueboard/66/keymaps/bloodlvst/keymap.c
  13. +1
    -1
      keyboards/clueboard/66/keymaps/caps_fn/keymap.c
  14. +1
    -1
      keyboards/clueboard/66/keymaps/colemak/keymap.c
  15. +1
    -1
      keyboards/clueboard/66/keymaps/default/keymap.c
  16. +1
    -1
      keyboards/clueboard/66/keymaps/jokrik/keymap.c
  17. +1
    -1
      keyboards/clueboard/66/keymaps/mac_optimized/keymap.c
  18. +1
    -1
      keyboards/clueboard/66/keymaps/magicmonty/keymap.c
  19. +1
    -1
      keyboards/clueboard/66/keymaps/maximised/keymap.c
  20. +1
    -1
      keyboards/clueboard/66/keymaps/mouse_keys/keymap.c
  21. +1
    -1
      keyboards/clueboard/66/keymaps/serubin/keymap.c
  22. +1
    -1
      keyboards/clueboard/66/keymaps/shift_fn/keymap.c
  23. +1
    -1
      keyboards/clueboard/66/keymaps/skully/keymap.c
  24. +1
    -1
      keyboards/clueboard/66/keymaps/smt/keymap.c
  25. +1
    -1
      keyboards/clueboard/66/keymaps/tetris/keymap.c
  26. +1
    -1
      keyboards/clueboard/66/keymaps/unix_optimized/keymap.c
  27. +1
    -1
      keyboards/clueboard/66/keymaps/win_optimized/keymap.c
  28. +1
    -1
      keyboards/clueboard/66/keymaps/xyverz/keymap.c
  29. +1
    -1
      keyboards/clueboard/66/rev1/rev1.h
  30. +1
    -1
      keyboards/clueboard/66/rev2/rev2.h
  31. +1
    -1
      keyboards/clueboard/66/rev3/rev3.h
  32. +1
    -1
      keyboards/clueboard/card/card.c
  33. +0
    -0
      keyboards/clueboard/card/card.h
  34. +1
    -1
      keyboards/clueboard/card/keymaps/default/keymap.c
  35. +1
    -1
      keyboards/clueboard/card/keymaps/rgb_effects/keymap.c

+ 1
- 1
docs/contributing.md View File

@ -80,7 +80,7 @@ We have a few different types of changes in QMK, each requiring a different leve
* Make sure your code change actually compiles.
* Keymaps: Make sure that `make keyboard:your_new_keymap` does not return an error
* Keyboards: Make sure that `make keyboard:all` does not return any errors
* Core: Make sure that `make allkb` does not return any errors.
* Core: Make sure that `make all` does not return any errors.
* Make sure commit messages are understandable on their own. You should put a short description (no more than 70 characters) on the first line, the second line should be empty, and on the 3rd and later lines you should describe your commit in detail, if required. Example:
```


keyboards/clueboard/17/clueboard_17.c → keyboards/clueboard/17/17.c View File

@ -1,4 +1,4 @@
#include "clueboard_17.h"
#include "17.h"
int pwm_level;

keyboards/clueboard/17/clueboard_17.h → keyboards/clueboard/17/17.h View File


+ 1
- 1
keyboards/clueboard/17/keymaps/default/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_17.h"
#include "17.h"
#include "backlight.h"


keyboards/clueboard/60/clueboard_60.c → keyboards/clueboard/60/60.c View File

@ -13,7 +13,7 @@
* 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 "clueboard_60.h"
#include "60.h"
void matrix_init_kb(void) {

keyboards/clueboard/60/clueboard_60.h → keyboards/clueboard/60/60.h View File


+ 1
- 1
keyboards/clueboard/60/keymaps/default/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_60.h"
#include "60.h"
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/60/keymaps/default_aek/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_60.h"
#include "60.h"
#define _______ KC_TRNS


+ 1
- 0
keyboards/clueboard/66/66.c View File

@ -0,0 +1 @@
#include "66.h"

keyboards/clueboard/66/clueboard_66.h → keyboards/clueboard/66/66.h View File


+ 0
- 1
keyboards/clueboard/66/clueboard_66.c View File

@ -1 +0,0 @@
#include "clueboard_66.h"

+ 1
- 1
keyboards/clueboard/66/keymaps/bloodlvst/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/caps_fn/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/colemak/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/default/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/jokrik/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/mac_optimized/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/magicmonty/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/maximised/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/mouse_keys/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/serubin/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/shift_fn/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/skully/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/smt/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Each layer gets a name for readability, which is then used in the keymap matrix below.
// The underscores don't mean anything - you can have a layer called STUFF or any other name.


+ 1
- 1
keyboards/clueboard/66/keymaps/tetris/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
#include "tetris_text.h"
// Helpful defines


+ 1
- 1
keyboards/clueboard/66/keymaps/unix_optimized/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/win_optimized/keymap.c View File

@ -1,4 +1,4 @@
#include "clueboard_66.h"
#include "66.h"
// Helpful defines
#define _______ KC_TRNS


+ 1
- 1
keyboards/clueboard/66/keymaps/xyverz/keymap.c View File

@ -1,7 +1,7 @@
// Xyverz' keymap.
// It's based on the default keymap, but Dvorak!
#include "clueboard_66.h"
#include "66.h"
// Used for SHIFT_ESC
#define MODS_CTRL_MASK (MOD_BIT(KC_LSHIFT)|MOD_BIT(KC_RSHIFT))


+ 1
- 1
keyboards/clueboard/66/rev1/rev1.h View File

@ -1,7 +1,7 @@
#ifndef REV1_H
#define REV1_H
#include "../clueboard_66.h"
#include "../66.h"
/* Clueboard matrix layout
* ,-----------------------------------------------------------. ,---.


+ 1
- 1
keyboards/clueboard/66/rev2/rev2.h View File

@ -1,7 +1,7 @@
#ifndef REV2_H
#define REV2_H
#include "clueboard_66.h"
#include "66.h"
/* Clueboard matrix layout
* ,-----------------------------------------------------------. ,---.


+ 1
- 1
keyboards/clueboard/66/rev3/rev3.h View File

@ -1,7 +1,7 @@
#ifndef REV3_H
#define REV3_H
#include "clueboard_66.h"
#include "66.h"
/* Clueboard matrix layout
* ,-----------------------------------------------------------. ,---.


keyboards/clueboard/card/cluecard.c → keyboards/clueboard/card/card.c View File

@ -1,4 +1,4 @@
#include "cluecard.h"
#include "card.h"
#define BL_RED OCR1B
#define BL_GREEN OCR1A
#define BL_BLUE OCR1C

keyboards/clueboard/card/cluecard.h → keyboards/clueboard/card/card.h View File


+ 1
- 1
keyboards/clueboard/card/keymaps/default/keymap.c View File

@ -1,4 +1,4 @@
#include "cluecard.h"
#include "card.h"
#ifdef AUDIO_ENABLE
#include "audio.h"
#endif


+ 1
- 1
keyboards/clueboard/card/keymaps/rgb_effects/keymap.c View File

@ -1,4 +1,4 @@
#include "cluecard.h"
#include "card.h"
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = KEYMAP(


Loading…
Cancel
Save