1
0
Fork 0

[Keyboard] Waldo 60 PCB Refactor (#5583)

* use pragma once

* modified readme with maintainer info

* remove rev1 for the time being

* QMK Configurator support for 60_ansi and 60_ansi_split_bs_rshift

* add hhkb layout and QMK Configurator support

* fix compile issue due to missing DEVICE_VER

* use a saner and less complicated default layout

* remove unused file

* fix up LAYOUT_all and formatting along with QKM Configurator support

* turn on bootmagic lite as the hardware reset switch isn't in a standard position

* remove default folder
This commit is contained in:
MechMerlin 2019-04-07 23:32:01 -07:00 committed by Drashna Jaelre
parent f44483f6aa
commit 9b393700d2
10 changed files with 82 additions and 172 deletions

View file

@ -15,18 +15,17 @@ 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"
/* USB Device descriptor parameter */
#define VENDOR_ID 0xFEED
#define PRODUCT_ID 0x6060
#define DEVICE_VER 0x0001
#define MANUFACTURER Greenwald Designs
#define PRODUCT Waldo
#define DESCRIPTION A 60% board
/* key matrix size */
#define MATRIX_ROWS 5
#define MATRIX_COLS 15
@ -76,5 +75,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// RGB LED
#define RGB_DI_PIN B0 // The pin the LED strip is connected to
#define RGBLED_NUM 10 // Number of LEDs in your strip
#endif