~ruther/qmk_firmware

ba6fb23f079a03f978c81deda58d1d18e08c54dc — Jack Humbert 9 years ago 7db2ec1
adds handwire and onekey example
M Makefile => Makefile +16 -8
@@ 65,22 65,24 @@ endif

KEYBOARD_PATH = $(TOP_DIR)/keyboards/$(KEYBOARD)

ifdef sub
	SUBPROJECT=$(sub)
endif
ifdef subproject
	SUBPROJECT=$(subproject)
endif

ifneq ("$(wildcard $(KEYBOARD_PATH)/$(KEYBOARD).c)","")
	KEYBOARD_FILE = keyboards/$(KEYBOARD)/$(KEYBOARD).c
	ifndef ARCH
		include $(KEYBOARD_PATH)/Makefile
		ifneq ("$(wildcard $(KEYBOARD_PATH)/Makefile)","")
			include $(KEYBOARD_PATH)/Makefile
		endif
	endif
else 
$(error "$(KEYBOARD_PATH)/$(KEYBOARD).c" does not exist)
endif

ifdef sub
	SUBPROJECT=$(sub)
endif
ifdef subproject
	SUBPROJECT=$(subproject)
endif

ifdef SUBPROJECT_DEFAULT
	SUBPROJECT?=$(SUBPROJECT_DEFAULT)
endif


@@ 110,7 112,13 @@ ifneq ("$(wildcard $(KEYMAP_PATH)/keymap.c)","")
	KEYMAP_FILE = keyboards/$(KEYBOARD)/keymaps/$(KEYMAP)/keymap.c
	-include $(KEYMAP_PATH)/Makefile
else 
	ifeq ("$(wildcard $(SUBPROJECT_PATH)/keymaps/$(KEYMAP)/keymap.c)","")
$(error "$(KEYMAP_PATH)/keymap.c" does not exist)
	else
		KEYMAP_PATH = $(SUBPROJECT_PATH)/keymaps/$(KEYMAP)
		KEYMAP_FILE = keyboards/$(KEYBOARD)/$(SUBPROJECT)/keymaps/$(KEYMAP)/keymap.c
		-include $(KEYMAP_PATH)/Makefile
	endif
endif

ifdef SUBPROJECT

A keyboards/handwired/handwired.c => keyboards/handwired/handwired.c +1 -0
@@ 0,0 1,1 @@
#include "handwired.h"
\ No newline at end of file

A keyboards/handwired/handwired.h => keyboards/handwired/handwired.h +1 -0
@@ 0,0 1,1 @@
#include "quantum.h"
\ No newline at end of file

A keyboards/handwired/onekey/Makefile => keyboards/handwired/onekey/Makefile +65 -0
@@ 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

A keyboards/handwired/onekey/config.h => keyboards/handwired/onekey/config.h +75 -0
@@ 0,0 1,75 @@
/*
Copyright 2015 Jun Wako <wakojun@gmail.com>

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 <http://www.gnu.org/licenses/>.
*/

#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

A keyboards/handwired/onekey/keymaps/default/keymap.c => keyboards/handwired/onekey/keymaps/default/keymap.c +5 -0
@@ 0,0 1,5 @@
#include "onekey.h"

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
    { KC_A }
};

A keyboards/handwired/onekey/onekey.c => keyboards/handwired/onekey/onekey.c +1 -0
@@ 0,0 1,1 @@
#include "onekey.h"
\ No newline at end of file

A keyboards/handwired/onekey/onekey.h => keyboards/handwired/onekey/onekey.h +1 -0
@@ 0,0 1,1 @@
#include "quantum.h"
\ No newline at end of file