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 */
/*
* 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
/*

View File

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

View File

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

View File

@ -2,7 +2,6 @@
The following is the QMK Firmware for the Keebfront Vanguard65
---
* Keyboard Maintainer: Keebfront
* Hardware Supported: Vanguard65
@ -10,6 +9,11 @@ The following is the QMK Firmware for the Keebfront Vanguard65
Make example for this keyboard (after setting up your build environment):
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).

View File

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