c71e67a29a
- Added clang (i.e. multi-compiler) support to convenience build scripts - Updated README - Added Bootloader build scripts for the two main versions currently used - Added uartOut and usbMuxUart build scripts (these tend to suffer from build rot the most as they're only used in debugging) - Attempt to get clang support for the Bootloader * clang is missing compiler extensions, so this may require a large re-write to get working
31 lines
938 B
Plaintext
31 lines
938 B
Plaintext
Name = uartOutCapabilities;
|
|
Version = 0.3;
|
|
Author = "HaaTa (Jacob Alexander) 2014-2016";
|
|
KLL = 0.3d;
|
|
|
|
# Modified Date
|
|
Date = 2016-07-17;
|
|
|
|
|
|
# Capabilties available to the uartOut output module
|
|
consCtrlOut => Output_consCtrlSend_capability( consCode : 2 );
|
|
noneOut => Output_noneSend_capability();
|
|
sysCtrlOut => Output_sysCtrlSend_capability( sysCode : 1 );
|
|
usbKeyOut => Output_usbCodeSend_capability( usbCode : 1 );
|
|
mouseOut => Output_usbMouse_capability( mouseCode : 2, relative_x : 2, relative_y : 2 );
|
|
|
|
# Configuration capabilities
|
|
kbdProtocolBoot => Output_kbdProtocolBoot_capability();
|
|
kbdProtocolNKRO => Output_kbdProtocolNKRO_capability();
|
|
toggleKbdProtocol => Output_toggleKbdProtocol_capability();
|
|
|
|
# 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();
|
|
|