2018-08-29 21:07:52 +02:00
|
|
|
# project specific files
|
2019-04-04 03:30:47 +02:00
|
|
|
SRC += config_led.c
|
2018-08-29 21:07:52 +02:00
|
|
|
|
|
|
|
#For platform and packs
|
|
|
|
ARM_ATSAM = SAMD51J18A
|
|
|
|
MCU = cortex-m4
|
|
|
|
|
|
|
|
# Build Options
|
2021-12-13 03:05:37 +01:00
|
|
|
# change yes to no to disable
|
2018-08-29 21:07:52 +02:00
|
|
|
#
|
2021-08-07 08:59:56 +02:00
|
|
|
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
|
2020-01-30 19:47:48 +01:00
|
|
|
MOUSEKEY_ENABLE = no # Mouse keys
|
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
CONSOLE_ENABLE = no # Console for debug
|
2018-08-29 21:07:52 +02:00
|
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
2021-12-09 06:05:44 +01:00
|
|
|
NKRO_ENABLE = yes # Enable N-Key Rollover
|
2021-09-20 08:51:00 +02:00
|
|
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
2018-08-29 21:07:52 +02:00
|
|
|
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
2021-09-21 12:04:03 +02:00
|
|
|
AUDIO_ENABLE = no # Audio output
|
2018-08-29 21:07:52 +02:00
|
|
|
VIRTSER_ENABLE = no # USB Serial Driver
|
|
|
|
RAW_ENABLE = no # Raw device
|
Massdrop keyboard updates for SEND_STRING, syscalls, stdio, debug prints, Auto Shift (#3973)
* Update for SEND_STRING usage
Update for SEND_STRING usage.
Sending keyboard reports (kbd, nkro) now obey the minimum polling time.
While attempting to send a keyboard report and waiting for a USB poll, other functions of the keyboard, including LED effects and power management, will continue to operate at their intended intervals.
* Updates for send string, syscalls, stdio, debug prints, auto shift
Now properly waiting for previous keys sent over USB to complete before sending new.
Added heap to linker and now compiling with syscalls support.
Removed custom string functions and now using stdio.
dprintf now works as intended through virtser device.
* CTRL and ALT keymap updates
CTRL mac keymap updated
ALT default and mac keymap updated
ALT rules.mk added Auto Shift with default no
* Code cleanup as per discussion with vomindoraan
Code cleanup as per discussion with vomindoraan
2018-09-29 03:32:15 +02:00
|
|
|
AUTO_SHIFT_ENABLE = no # Auto Shift
|
2019-04-04 03:30:47 +02:00
|
|
|
|
|
|
|
# Custom RGB matrix handling
|
2020-11-28 21:02:18 +01:00
|
|
|
RGB_MATRIX_ENABLE = yes
|
|
|
|
RGB_MATRIX_DRIVER = custom
|
2019-09-25 21:55:27 +02:00
|
|
|
|
|
|
|
LAYOUTS = 65_ansi_blocker
|