CA66 R1/R2 Cleanup (#6678)
* fixup readme to adhere to QMK standards and to also have more information * use pragma once * strip out the custom bootmagic lite routine as it is the same as QMK's default bootmagic lite routine. Also add the caps lock led indicator * turn on bootmagic lite * update default keymap * Update keyboards/playkbtw/ca66/ca66.c Co-Authored-By: fauxpark <fauxpark@gmail.com> * remove lines 4 thru 37 and add bootloaderbetter_chibios_wait
parent
ac8f8a8914
commit
fc5fb2fc15
@ -1,30 +1,12 @@ |
|||||||
#include "ca66.h" |
#include "ca66.h" |
||||||
#include "config.h" |
|
||||||
|
|
||||||
void bootmagic_lite(void) |
void led_set_kb(uint8_t usb_led) { |
||||||
{ |
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
|
||||||
// The lite version of TMK's bootmagic.
|
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) { |
||||||
// 100% less potential for accidentally making the
|
writePinHigh(D1); |
||||||
// keyboard do stupid things.
|
} else { |
||||||
|
writePinLow(D1); |
||||||
|
} |
||||||
|
|
||||||
// We need multiple scans because debouncing can't be turned off.
|
led_set_user(usb_led); |
||||||
matrix_scan(); |
|
||||||
wait_ms(DEBOUNCE); |
|
||||||
matrix_scan(); |
|
||||||
|
|
||||||
// If the Esc (matrix 0,0) is held down on power up,
|
|
||||||
// reset the EEPROM valid state and jump to bootloader.
|
|
||||||
if ( matrix_get_row(0) & (1<<0) ) |
|
||||||
{ |
|
||||||
// Set the TMK/QMK EEPROM state as invalid.
|
|
||||||
eeconfig_disable(); |
|
||||||
// Jump to bootloader.
|
|
||||||
bootloader_jump(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
void matrix_init_kb(void) |
|
||||||
{ |
|
||||||
bootmagic_lite(); |
|
||||||
matrix_init_user(); |
|
||||||
} |
} |
||||||
|
@ -1,15 +1,16 @@ |
|||||||
CA66 |
# CA66 |
||||||
== |
|
||||||
|
|
||||||
Custom 65% |
Custom 65% |
||||||
|
|
||||||
|
This QMK firmware handles both PCBs from Round 1 and from Round 2. |
||||||
|
|
||||||
Keyboard Maintainer: QMK Community |
Keyboard Maintainer: QMK Community |
||||||
Hardware Supported: CA66 |
Hardware Supported: CA66 R1/R2 |
||||||
Hardware Availability: [Play Keyboard](http://play-keyboard.store/) |
Hardware Availability: [Play Keyboard](http://play-keyboard.store/) |
||||||
|
|
||||||
|
|
||||||
Make example for this keyboard (after setting up your build environment): |
Make example for this keyboard (after setting up your build environment): |
||||||
|
|
||||||
make playkbtw/ca66:default |
make playkbtw/ca66:default |
||||||
|
|
||||||
See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. |
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). |
||||||
|
@ -1,56 +1,18 @@ |
|||||||
# MCU name
|
# MCU name
|
||||||
MCU = atmega32u4
|
MCU = atmega32u4
|
||||||
|
|
||||||
# Processor frequency.
|
BOOTLOADER = atmel-dfu
|
||||||
# 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*
|
|
||||||
OPT_DEFS += -DBOOTLOADER_SIZE=4096
|
|
||||||
|
|
||||||
|
|
||||||
# Build Options
|
# Build Options
|
||||||
# comment out to disable the options.
|
# comment out to disable the options.
|
||||||
#
|
#
|
||||||
BOOTMAGIC_ENABLE ?= no
|
BOOTMAGIC_ENABLE = lite
|
||||||
MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700)
|
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
||||||
EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450)
|
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||||
CONSOLE_ENABLE ?= no # Console for debug(+400)
|
CONSOLE_ENABLE = no # Console for debug(+400)
|
||||||
COMMAND_ENABLE ?= no # Commands for debug and configuration
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
SLEEP_LED_ENABLE ?= no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
NKRO_ENABLE ?= yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||||
BACKLIGHT_ENABLE ?= yes # Enable keyboard backlight functionality
|
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||||
AUDIO_ENABLE ?= no
|
AUDIO_ENABLE = no
|
||||||
RGBLIGHT_ENABLE ?= yes
|
RGBLIGHT_ENABLE = yes
|
||||||
|
Loading…
Reference in new issue