From 2f3dbb1253839fad1bb2e20db8ef7b88c5fd331a Mon Sep 17 00:00:00 2001 From: Takuya Urakawa Date: Wed, 13 Mar 2019 03:48:17 +0900 Subject: Add new keyboard Plaid and ATMEGA328p support (#5379) * add plaid * Change usb vid/pid to free id from vusb Trivial fix for vusb core * update readme * update info.json default keymap * fix typo * Replace copyright --- quantum/config_common.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'quantum') diff --git a/quantum/config_common.h b/quantum/config_common.h index 0b2e408a4..c489e1407 100644 --- a/quantum/config_common.h +++ b/quantum/config_common.h @@ -59,6 +59,11 @@ #define PINC_ADDRESS 0x3 #define PINB_ADDRESS 0x6 #define PINA_ADDRESS 0x9 + #elif defined(__AVR_ATmega328P__) + #define ADDRESS_BASE 0x00 + #define PINB_ADDRESS 0x3 + #define PINC_ADDRESS 0x6 + #define PIND_ADDRESS 0x9 #else #error "Pins are not defined" #endif -- cgit v1.2.3-24-g4f1b