Merge branch 'vanguard65' of https://github.com/FJLabs-Designs/qmk_firmware into vanguard65

This commit is contained in:
Felix Jen 2023-02-06 18:50:25 -06:00
commit e102cf8608
No known key found for this signature in database
GPG Key ID: 4E7AA63CBBCE400E
5 changed files with 9 additions and 29 deletions

View File

@ -79,25 +79,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* Define less important options */ /* Define less important options */
/*
* Force NKRO
*
* Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
* state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
* makefile for this to work.)
*
* If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
* until the next keyboard reset.
*
* NKRO may prevent your keystrokes from being detected in the BIOS, but it is
* fully operational during normal computer usage.
*
* For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
* or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
* bootmagic, NKRO mode will always be enabled until it is toggled again during a
* power-up.
*
*/
//#define FORCE_NKRO //#define FORCE_NKRO
/* /*

View File

@ -8,6 +8,8 @@
"pid": "0x1823", "pid": "0x1823",
"device_version": "0.0.1" "device_version": "0.0.1"
}, },
"processor": "atmega32u4",
"bootloader": "atmel-dfu",
"layouts": { "layouts": {
"LAYOUT": { "LAYOUT": {
"layout": [ "layout": [

View File

@ -23,7 +23,7 @@ enum layers {
_LAYER3 _LAYER3
}; };
enum custom_keycodeas { enum custom_keycodes {
A_CW = USER00, A_CW = USER00,
A_CCW A_CCW
}; };
@ -117,7 +117,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
return true; return true;
default: default:
return true; return true;
}; }
} }
// ====== Process VIA Custom UI ====== // ====== Process VIA Custom UI ======

View File

@ -2,7 +2,6 @@
The following is the QMK Firmware for the Keebfront Vanguard65 The following is the QMK Firmware for the Keebfront Vanguard65
---
* Keyboard Maintainer: Keebfront * Keyboard Maintainer: Keebfront
* Hardware Supported: Vanguard65 * Hardware Supported: Vanguard65
@ -11,6 +10,11 @@ Make example for this keyboard (after setting up your build environment):
make keebfront/vanguard65:default make keebfront/vanguard65:default
Flashing example for this keyboard:
make keebfront/vanguard65:default:flash
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). 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).
You can enter the bootloader by pressing the two reset pads on the back of the PCB with tweezers. You can enter the bootloader by pressing the two reset pads on the back of the PCB with tweezers.

View File

@ -1,12 +1,5 @@
# MCU name
MCU = atmega32u4
# Processor frequency # Processor frequency
F_CPU = 8000000 F_CPU = 8000000
# Bootloader selection
BOOTLOADER = atmel-dfu
# Build Options # Build Options
# change yes to no to disable # change yes to no to disable
LTO_ENABLE = yes LTO_ENABLE = yes