aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/tada68/config.h
diff options
context:
space:
mode:
authorJames Young <18669334+noroadsleft@users.noreply.github.com>2020-01-07 16:17:01 -0800
committerJoel Challis <git@zvecr.com>2020-01-08 00:17:01 +0000
commit0027a0a94874302644fa466ff074091ecc9c7b0b (patch)
tree976055a6179d1ad83dad54dceee9938a450355c6 /keyboards/tada68/config.h
parent0c86cfeaed23377862356326c0f26191f74d899f (diff)
downloadfirmware-0027a0a94874302644fa466ff074091ecc9c7b0b.tar.gz
firmware-0027a0a94874302644fa466ff074091ecc9c7b0b.tar.bz2
firmware-0027a0a94874302644fa466ff074091ecc9c7b0b.zip
Tada68 Fixes and Minor Refactoring (#7820)
* fix ANSI layout macro reference * update ISO layout macro and enable 65_iso community layout support - rename to LAYOUT_65_iso (with LAYOUT_iso alias for backwards compatibility) - rename position k2c to k1d (electrical position) * rules.mk templating * tada68.h: use #pragma once include guard * config.h: use #pragma once include guard * make product id unique * update info.json * update readme * cleanup default keymap - keycode alignment - layout macro reference - four-space indent * remove matrix_*_user functions from tada68.h
Diffstat (limited to 'keyboards/tada68/config.h')
-rwxr-xr-xkeyboards/tada68/config.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/keyboards/tada68/config.h b/keyboards/tada68/config.h
index a8fa37a5b..89ed8c311 100755
--- a/keyboards/tada68/config.h
+++ b/keyboards/tada68/config.h
@@ -15,14 +15,13 @@ 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 PRODUCT_ID 0x4C17
#define DEVICE_VER 0x0003
#define MANUFACTURER TADA
#define PRODUCT TADA68
@@ -75,5 +74,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//#define NO_ACTION_ONESHOT
//#define NO_ACTION_MACRO
//#define NO_ACTION_FUNCTION
-
-#endif