9c52fb32fa
- Adds proper flashMode support for all keyboards and microcontrollers (usb and serial) - flashModeEnabled must be set to 1 otherwise it will only show an error * This is on purpose (somewhat dangerous feature as it allows remote flashing) - Capability cleanup
33 lines
835 B
Plaintext
33 lines
835 B
Plaintext
Name = pjrcUSBCapabilities;
|
|
Version = 0.6;
|
|
Author = "HaaTa (Jacob Alexander) 2014-2015";
|
|
KLL = 0.3c;
|
|
|
|
# Modified Date
|
|
Date = 2015-08-21;
|
|
|
|
|
|
# Output capabilities
|
|
consCtrlOut => Output_consCtrlSend_capability( consCode : 2 );
|
|
noneOut => Output_noneSend_capability();
|
|
sysCtrlOut => Output_sysCtrlSend_capability( sysCode : 1 );
|
|
usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
|
|
|
|
# Configuration capabilities
|
|
kbdProtocolBoot => Output_kbdProtocolBoot_capability();
|
|
kbdProtocolNKRO => Output_kbdProtocolNKRO_capability();
|
|
|
|
# Locale Settings
|
|
keyboardLocale => KeyboardLocale_define;
|
|
keyboardLocale = 0;
|
|
|
|
# Bootloader Mode capability
|
|
# XXX
|
|
# By default this is disabled on purpose
|
|
# It is a large security hazard
|
|
flashModeEnabled => flashModeEnabled_define;
|
|
flashModeEnabled = 0;
|
|
|
|
flashMode => Output_flashMode_capability();
|
|
|