hasu@tmk

Results 46 issues of hasu@tmk

[NOT COMPLETED. STILL WORKING ON] Let's think about emulating number row of Porgrammer Dvorak or French AZERTY https://www.kaufmann.no/roland/dvorak/ https://en.wikipedia.org/wiki/AZERTY ``` const actionactionmaps[][][] PROGMEM = { [0] = {{ ACTION_LAYER_MODS(1, MOD_LSFT),...

Seems like the game requires keyboard with 1ms interval to achieve some manoeuvre. https://geekhack.org/index.php?topic=41989.msg2520390#msg2520390 In current TMK default keyboard uses 10ms for wider compatibility while NKRO keyboard endpoint has 1ms...

With ChibiOS `wait_us()` doesn't provide enough resolution or just doens't work. Probably `wait_ms()` is not enough also. Some of keyboard protocol converters require microsecond resoution to handle signals. We simply...

CHIBIOS

This is just a memo for future reference. https://github.com/tmk/tmk_keyboard/wiki/HID-Report-Descriptor#usb-nkro-descriptor https://github.com/tmk/tmk_keyboard/blob/master/tmk_core/doc/USB_NKRO.txt ## Soarer's converter https://github.com/tmk/tmk_keyboard/wiki/HID-Report-Descriptor#soarers-nkro6kro-trick >I watched HID reports from soarer's with usbhid-dump on Linux(or in report mode) the converter always...

NOTE

Disabling mouse key in Makefile ``` #MOUSEKEY_ENABLE = yes ``` spits this warning. ``` mkdir -p obj_ps2_usb_lufa/common Compiling C: ../../tmk_core/common/command.c avr-gcc -c -mmcu=atmega32u4 -gdwarf-2 -DF_CPU=16000000UL -DBOOTLOADER_SIZE=512 -DPS2_USE_INT -DF_USB=16000000UL -DARCH=ARCH_AVR8 -DUSB_DEVICE_ONLY...

``` Compiling action.c ./tmk_core/common/action.c: In function 'debug_event': ./tmk_core/common/action.c:546:29: warning: unused parameter 'event' [-Wunused-parameter] void debug_event(keyevent_t event) ^ ``` observed in build process of `infinity_ergodox` with arm-none-eabi-gcc 4.8.3. ``` arm-none-eabi-gcc (4.8.3-18ubuntu2+12)...