Bläddra i källkod

[Keyboard] Move scrabblepad into donutcables directory (#5553)

* move scrabblepad into donutcables directory

* use pragma once

* update scrabblepad readme
MechMerlin 6 år sedan
förälder
incheckning
7e5c107d43

+ 2 - 5
keyboards/scrabblepad/config.h → keyboards/donutcables/scrabblepad/config.h

@@ -15,8 +15,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/>.
 */
 
-#ifndef CONFIG_H
-#define CONFIG_H
+#pragma once
 
 #include "config_common.h"
 
@@ -49,7 +48,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 /* COL2ROW, ROW2COL*/
 #define DIODE_DIRECTION COL2ROW
 
-// #define BACKLIGHT_PIN 
+// #define BACKLIGHT_PIN
 // #define BACKLIGHT_BREATHING
 // #define BACKLIGHT_LEVELS 3
 
@@ -188,5 +187,3 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
 //#define MIDI_TONE_KEYCODE_OCTAVES 1
-
-#endif

+ 0 - 0
keyboards/scrabblepad/info.json → keyboards/donutcables/scrabblepad/info.json


+ 0 - 0
keyboards/scrabblepad/keymaps/default/config.h → keyboards/donutcables/scrabblepad/keymaps/default/config.h


+ 0 - 0
keyboards/scrabblepad/keymaps/default/keymap.c → keyboards/donutcables/scrabblepad/keymaps/default/keymap.c


+ 0 - 0
keyboards/scrabblepad/keymaps/default/readme.md → keyboards/donutcables/scrabblepad/keymaps/default/readme.md


+ 0 - 0
keyboards/scrabblepad/keymaps/random/keymap.c → keyboards/donutcables/scrabblepad/keymaps/random/keymap.c


+ 0 - 0
keyboards/scrabblepad/keymaps/random/readme.md → keyboards/donutcables/scrabblepad/keymaps/random/readme.md


+ 2 - 2
keyboards/scrabblepad/readme.md → keyboards/donutcables/scrabblepad/readme.md

@@ -12,6 +12,6 @@ Hardware Availability: [Donut Cables](https://donutcables.com/)
 
 Make example for this keyboard (after setting up your build environment):
 
-    make scrabblepad:default
+    make donutcables/scrabblepad:default
 
-See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information.
+See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).

+ 0 - 0
keyboards/scrabblepad/rules.mk → keyboards/donutcables/scrabblepad/rules.mk


+ 0 - 0
keyboards/scrabblepad/scrabblepad.c → keyboards/donutcables/scrabblepad/scrabblepad.c


+ 1 - 4
keyboards/scrabblepad/scrabblepad.h → keyboards/donutcables/scrabblepad/scrabblepad.h

@@ -13,8 +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/>.
  */
-#ifndef SCRABBLEPAD_H
-#define SCRABBLEPAD_H
+#pragma once
 
 #include "quantum.h"
 
@@ -53,5 +52,3 @@
     { kD0, kD1, kD2, kD3, kD4, kD5, kD6, kD7, kD8, kD9, kDA, kDB, kDC, kDD, kDE, }, \
     { kE0, kE1, kE2, kE3, kE4, kE5, kE6, kE7, kE8, kE9, kEA, kEB, kEC, kED, kEE  } \
 }
-
-#endif