Browse Source

Keyboard: Rename macropad to treasure/type9 (#4035)

* rename macropad keyboard to type9 under the treasure directory

* fixup the readme

* rename macropad to type9

* moar renames
pull/4037/head
MechMerlin 5 years ago
committed by Drashna Jaelre
parent
commit
285ed08867
10 changed files with 8 additions and 8 deletions
  1. +0
    -1
      keyboards/macropad/keymaps/default/readme.md
  2. +1
    -1
      keyboards/treasure/type9/config.h
  3. +1
    -1
      keyboards/treasure/type9/info.json
  4. +0
    -0
      keyboards/treasure/type9/keymaps/default/config.h
  5. +0
    -0
      keyboards/treasure/type9/keymaps/default/keymap.c
  6. +1
    -0
      keyboards/treasure/type9/keymaps/default/readme.md
  7. +2
    -2
      keyboards/treasure/type9/readme.md
  8. +0
    -0
      keyboards/treasure/type9/rules.mk
  9. +1
    -1
      keyboards/treasure/type9/type9.c
  10. +2
    -2
      keyboards/treasure/type9/type9.h

+ 0
- 1
keyboards/macropad/keymaps/default/readme.md View File

@ -1 +0,0 @@
# The default keymap for macropad

keyboards/macropad/config.h → keyboards/treasure/type9/config.h View File

@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define PRODUCT_ID 0x0000
#define DEVICE_VER 0x0001
#define MANUFACTURER Treasure
#define PRODUCT Macropad Type 9
#define PRODUCT Type 9
#define DESCRIPTION A custom macropad
/* key matrix size */

keyboards/macropad/info.json → keyboards/treasure/type9/info.json View File

@ -1,5 +1,5 @@
{
"keyboard_name": "Macropad",
"keyboard_name": "Type-9",
"url": "",
"maintainer": "qmk",
"width": 3,

keyboards/macropad/keymaps/default/config.h → keyboards/treasure/type9/keymaps/default/config.h View File


keyboards/macropad/keymaps/default/keymap.c → keyboards/treasure/type9/keymaps/default/keymap.c View File


+ 1
- 0
keyboards/treasure/type9/keymaps/default/readme.md View File

@ -0,0 +1 @@
# The default keymap for Type-9

keyboards/macropad/readme.md → keyboards/treasure/type9/readme.md View File

@ -1,4 +1,4 @@
# Macropad
# Type-9
3x3 Macropad.
@ -8,6 +8,6 @@ Hardware Availability: [Treasure](http://macropad.co/)
Make example for this keyboard (after setting up your build environment):
make macropad:default
make treasure/type9:default
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).

keyboards/macropad/rules.mk → keyboards/treasure/type9/rules.mk View File


keyboards/macropad/macropad.c → keyboards/treasure/type9/type9.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 "macropad.h"
#include "type9.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here

keyboards/macropad/macropad.h → keyboards/treasure/type9/type9.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/>.
*/
#ifndef MACROPAD_H
#define MACROPAD_H
#ifndef TYPE9_H
#define TYPE9_H
#include "quantum.h"

Loading…
Cancel
Save