From ba6fb23f079a03f978c81deda58d1d18e08c54dc Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Wed, 29 Jun 2016 20:21:05 -0400 Subject: adds handwire and onekey example --- keyboards/handwired/onekey/Makefile | 65 +++++++++++++++++++ keyboards/handwired/onekey/config.h | 75 ++++++++++++++++++++++ .../handwired/onekey/keymaps/default/keymap.c | 5 ++ keyboards/handwired/onekey/onekey.c | 1 + keyboards/handwired/onekey/onekey.h | 1 + 5 files changed, 147 insertions(+) create mode 100644 keyboards/handwired/onekey/Makefile create mode 100644 keyboards/handwired/onekey/config.h create mode 100644 keyboards/handwired/onekey/keymaps/default/keymap.c create mode 100644 keyboards/handwired/onekey/onekey.c create mode 100644 keyboards/handwired/onekey/onekey.h (limited to 'keyboards/handwired/onekey') diff --git a/keyboards/handwired/onekey/Makefile b/keyboards/handwired/onekey/Makefile new file mode 100644 index 000000000..c6d10856a --- /dev/null +++ b/keyboards/handwired/onekey/Makefile @@ -0,0 +1,65 @@ + + +# MCU name +MCU = atmega32u4 + +# Processor frequency. +# This will define a symbol, F_CPU, in all source code files equal to the +# processor frequency in Hz. You can then use this symbol in your source code to +# calculate timings. Do NOT tack on a 'UL' at the end, this will be done +# automatically to create a 32-bit value in your source code. +# +# This will be an integer division of F_USB below, as it is sourced by +# F_USB after it has run through any CPU prescalers. Note that this value +# does not *change* the processor frequency - it should merely be updated to +# reflect the processor speed set externally so that the code can use accurate +# software delays. +F_CPU = 16000000 + + +# +# LUFA specific +# +# Target architecture (see library "Board Types" documentation). +ARCH = AVR8 + +# Input clock frequency. +# This will define a symbol, F_USB, in all source code files equal to the +# input clock frequency (before any prescaling is performed) in Hz. This value may +# differ from F_CPU if prescaling is used on the latter, and is required as the +# raw input clock is fed directly to the PLL sections of the AVR for high speed +# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' +# at the end, this will be done automatically to create a 32-bit value in your +# source code. +# +# If no clock division is performed on the input clock inside the AVR (via the +# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. +F_USB = $(F_CPU) + +# Interrupt driven control endpoint task(+60) +OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT + + +# Boot Section Size in *bytes* +# Teensy halfKay 512 +# Teensy++ halfKay 1024 +# Atmel DFU loader 4096 +# LUFA bootloader 4096 +# USBaspLoader 2048 +OPT_DEFS += -DBOOTLOADER_SIZE=4096 + + +# Build Options +# comment out to disable the options. +# +BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700) +EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450) +CONSOLE_ENABLE ?= yes # Console for debug(+400) +COMMAND_ENABLE ?= yes # Commands for debug and configuration +#SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend +#NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA + +ifndef QUANTUM_DIR + include ../../../Makefile +endif \ No newline at end of file diff --git a/keyboards/handwired/onekey/config.h b/keyboards/handwired/onekey/config.h new file mode 100644 index 000000000..c0a6b5839 --- /dev/null +++ b/keyboards/handwired/onekey/config.h @@ -0,0 +1,75 @@ +/* +Copyright 2015 Jun Wako + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +#ifndef CONFIG_H +#define CONFIG_H + +#include "config_common.h" + +/* USB Device descriptor parameter */ +#define VENDOR_ID 0xFEED +#define PRODUCT_ID 0x6464 +#define DEVICE_VER 0x0001 +#define MANUFACTURER none +#define PRODUCT onekey +#define DESCRIPTION test board for qmk + +/* key matrix size */ +#define MATRIX_ROWS 1 +#define MATRIX_COLS 1 + +#define MATRIX_COL_PINS { B0 } +#define MATRIX_ROW_PINS { D0 } +#define UNUSED_PINS + +/* define if matrix has ghost */ +//#define MATRIX_HAS_GHOST + +/* Set 0 if debouncing isn't needed */ +#define DEBOUNCE 5 + +/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ +#define LOCKING_SUPPORT_ENABLE +/* Locking resynchronize hack */ +#define LOCKING_RESYNC_ENABLE + +/* key combination for command */ +#define IS_COMMAND() ( \ + keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \ +) + + + +/* + * Feature disable options + * These options are also useful to firmware size reduction. + */ + +/* disable debug print */ +//#define NO_DEBUG + +/* disable print */ +//#define NO_PRINT + +/* disable action features */ +//#define NO_ACTION_LAYER +//#define NO_ACTION_TAPPING +//#define NO_ACTION_ONESHOT +//#define NO_ACTION_MACRO +//#define NO_ACTION_FUNCTION + +#endif diff --git a/keyboards/handwired/onekey/keymaps/default/keymap.c b/keyboards/handwired/onekey/keymaps/default/keymap.c new file mode 100644 index 000000000..756c4f51e --- /dev/null +++ b/keyboards/handwired/onekey/keymaps/default/keymap.c @@ -0,0 +1,5 @@ +#include "onekey.h" + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + { KC_A } +}; diff --git a/keyboards/handwired/onekey/onekey.c b/keyboards/handwired/onekey/onekey.c new file mode 100644 index 000000000..c79e0120e --- /dev/null +++ b/keyboards/handwired/onekey/onekey.c @@ -0,0 +1 @@ +#include "onekey.h" \ No newline at end of file diff --git a/keyboards/handwired/onekey/onekey.h b/keyboards/handwired/onekey/onekey.h new file mode 100644 index 000000000..7a4a4835e --- /dev/null +++ b/keyboards/handwired/onekey/onekey.h @@ -0,0 +1 @@ +#include "quantum.h" \ No newline at end of file -- cgit v1.2.3-24-g4f1b