comparison Output/pjrcUSB/capabilities.kll @ 370:39e338a6733d

Fixing default ErgoDox layout and adding FlashMode button - 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
author Jacob Alexander <haata@kiibohd.com>
date Fri, 21 Aug 2015 19:43:45 -0700
parents 06a54d582bf8
children 970dab727f47
comparison
equal deleted inserted replaced
369:ce9720634c15 370:39e338a6733d
1 Name = pjrcUSBCapabilities; 1 Name = pjrcUSBCapabilities;
2 Version = 0.5; 2 Version = 0.6;
3 Author = "HaaTa (Jacob Alexander) 2014-2015"; 3 Author = "HaaTa (Jacob Alexander) 2014-2015";
4 KLL = 0.3b; 4 KLL = 0.3c;
5 5
6 # Modified Date 6 # Modified Date
7 Date = 2015-07-12; 7 Date = 2015-08-21;
8 8
9 9
10 # Output capabilities 10 # Output capabilities
11 consCtrlOut => Output_consCtrlSend_capability( consCode : 2 ); 11 consCtrlOut => Output_consCtrlSend_capability( consCode : 2 );
12 noneOut => Output_noneSend_capability(); 12 noneOut => Output_noneSend_capability();
19 19
20 # Locale Settings 20 # Locale Settings
21 keyboardLocale => KeyboardLocale_define; 21 keyboardLocale => KeyboardLocale_define;
22 keyboardLocale = 0; 22 keyboardLocale = 0;
23 23
24 # Bootloader Mode capability
25 # XXX
26 # By default this is disabled on purpose
27 # It is a large security hazard
28 flashModeEnabled => flashModeEnabled_define;
29 flashModeEnabled = 0;
30
31 flashMode => Output_flashMode_capability();
32