diff --git a/keyboards/system76/launch_beta_1/README.md b/keyboards/system76/launch_1/README.md similarity index 91% rename from keyboards/system76/launch_beta_1/README.md rename to keyboards/system76/launch_1/README.md index 5d582802c29..c563a62655e 100644 --- a/keyboards/system76/launch_beta_1/README.md +++ b/keyboards/system76/launch_1/README.md @@ -5,18 +5,18 @@ * To build the firmware without flashing the keyboard, use `make (keyboard name):(layout name)` - For example, if you want to build the `default` layout for the Launch keyboard, run: ``` -make system76/launch_beta_1:default +make system76/launch_1:default ``` * To flash the firmware, you'll use the same build command, but with `dfu` added to the end: ``` -make system76/launch_beta_1:default:dfu +make system76/launch_1:default:dfu ``` - After it builds, you will see a message that says `Detecting USB port, reset your controller now...`. You then want to hit the "RESET" key on the keyboard if it is programmed into the layout. - In the default layout, it is Fn+Esc. If a RESET key is not programmed into the layout, you will have to manually reset the controller. * To flash the firmware using ISP, you will need a USBasp device, and a tag connect cable. - Build the firmware and bootloader with: ``` -make system76/launch_beta_1:default:production +make system76/launch_1:default:production ``` - Run avrdude to flash the fuses: ``` @@ -24,7 +24,7 @@ avrdude -c usbasp -p atmega32u4 -U lfuse:w:0x5E:m -U hfuse:w:0xD9:m -U efuse:w:0 ``` - Run avrdude to flash the ROM: ``` -avrdude -c usbasp -p atmega32u4 -U flash:w:system76_launch_beta_1_default_production.hex +avrdude -c usbasp -p atmega32u4 -U flash:w:system76_launch_1_default_production.hex ``` ## Making your own layout: diff --git a/keyboards/system76/launch_beta_1/config.h b/keyboards/system76/launch_1/config.h similarity index 95% rename from keyboards/system76/launch_beta_1/config.h rename to keyboards/system76/launch_1/config.h index 489a9d8f6c5..745cb1c9b6c 100644 --- a/keyboards/system76/launch_beta_1/config.h +++ b/keyboards/system76/launch_1/config.h @@ -8,8 +8,8 @@ #define PRODUCT_ID 0x0001 #define DEVICE_VER 0x0001 #define MANUFACTURER System76 -#define PRODUCT Launch Configurable Keyboard (launch_beta_1) -#define DESCRIPTION Launch Configurable Keyboard (launch_beta_1) +#define PRODUCT Launch Configurable Keyboard (launch_1) +#define DESCRIPTION Launch Configurable Keyboard (launch_1) /* key matrix size */ #define MATRIX_ROWS 6 diff --git a/keyboards/system76/launch_beta_1/i2c.c b/keyboards/system76/launch_1/i2c.c similarity index 100% rename from keyboards/system76/launch_beta_1/i2c.c rename to keyboards/system76/launch_1/i2c.c diff --git a/keyboards/system76/launch_beta_1/i2c.h b/keyboards/system76/launch_1/i2c.h similarity index 100% rename from keyboards/system76/launch_beta_1/i2c.h rename to keyboards/system76/launch_1/i2c.h diff --git a/keyboards/system76/launch_beta_1/keymaps/default/keymap.c b/keyboards/system76/launch_1/keymaps/default/keymap.c similarity index 100% rename from keyboards/system76/launch_beta_1/keymaps/default/keymap.c rename to keyboards/system76/launch_1/keymaps/default/keymap.c diff --git a/keyboards/system76/launch_beta_1/keymaps/jeremy/keymap.c b/keyboards/system76/launch_1/keymaps/jeremy/keymap.c similarity index 100% rename from keyboards/system76/launch_beta_1/keymaps/jeremy/keymap.c rename to keyboards/system76/launch_1/keymaps/jeremy/keymap.c diff --git a/keyboards/system76/launch_beta_1/launch_beta_1.c b/keyboards/system76/launch_1/launch_1.c similarity index 99% rename from keyboards/system76/launch_beta_1/launch_beta_1.c rename to keyboards/system76/launch_1/launch_1.c index 01afba81382..cd65ee09138 100644 --- a/keyboards/system76/launch_beta_1/launch_beta_1.c +++ b/keyboards/system76/launch_1/launch_1.c @@ -1,7 +1,7 @@ #include "dynamic_keymap.h" #include "tmk_core/common/eeprom.h" -#include "launch_beta_1.h" +#include "launch_1.h" #include "usb_mux.h" #if RGB_MATRIX_ENABLE diff --git a/keyboards/system76/launch_beta_1/launch_beta_1.h b/keyboards/system76/launch_1/launch_1.h similarity index 93% rename from keyboards/system76/launch_beta_1/launch_beta_1.h rename to keyboards/system76/launch_1/launch_1.h index ac06a656177..f8336e12233 100644 --- a/keyboards/system76/launch_beta_1/launch_beta_1.h +++ b/keyboards/system76/launch_1/launch_1.h @@ -1,5 +1,5 @@ -#ifndef LAUNCH_BETA_1_H -#define LAUNCH_BETA_1_H +#ifndef LAUNCH_1_H +#define LAUNCH_1_H #include "quantum.h" @@ -19,4 +19,4 @@ { K50, K51, K52, K53, K54, K3D, K55, K56, K57, K58, K59, K5A, K5B, K2E }, \ } -#endif // LAUNCH_BETA_1_H +#endif // LAUNCH_1_H diff --git a/keyboards/system76/launch_beta_1/rgb_matrix_kb.inc b/keyboards/system76/launch_1/rgb_matrix_kb.inc similarity index 100% rename from keyboards/system76/launch_beta_1/rgb_matrix_kb.inc rename to keyboards/system76/launch_1/rgb_matrix_kb.inc diff --git a/keyboards/system76/launch_beta_1/rules.mk b/keyboards/system76/launch_1/rules.mk similarity index 100% rename from keyboards/system76/launch_beta_1/rules.mk rename to keyboards/system76/launch_1/rules.mk diff --git a/keyboards/system76/launch_beta_1/usb_mux.c b/keyboards/system76/launch_1/usb_mux.c similarity index 100% rename from keyboards/system76/launch_beta_1/usb_mux.c rename to keyboards/system76/launch_1/usb_mux.c diff --git a/keyboards/system76/launch_beta_1/usb_mux.h b/keyboards/system76/launch_1/usb_mux.h similarity index 100% rename from keyboards/system76/launch_beta_1/usb_mux.h rename to keyboards/system76/launch_1/usb_mux.h