You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

README.md 3.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ## TMK running on top of ChibiOS
  2. ### Notes
  3. - To use, unpack or symlink [ChibiOS] {currently 3.0.1} to `tmk_core/tool/chibios/chibios`.
  4. - For gcc options, inspect `tmk_core/tool/chibios/chibios.mk`. For instance, I enabled `-Wno-missing-field-initializers`, because TMK common bits generated a lot of warnings on that.
  5. Also pay attention to `-O0` (enabled for debugging); for deployment use `-O2`.
  6. - USB string descriptors are messy. I did not find a way to cleanly generate the right structures from actual strings, so the definitions in individual keyboards' `config.h` are ugly as heck.
  7. - There are some random constants left so far, e.g. 5ms sleep between calling `keyboard_task`, or 1.5sec wait for USB init, in `main.c`. There should be no such in `usb_main.c` (the main USB stack). Everything is based on timers/interrupts/kernel scheduling (well except `keyboard_task`), so no periodically called things (again, except `keyboard_task`, which is just how TMK is designed).
  8. - It is easy to add some code for testing (e.g. blink LED, do stuff on button press, etc...) - just create another thread in `main.c`, it will run independently of the keyboard business.
  9. - Jumping to bootloader works, but it is not entirely pleasant, since it is very much MCU dependent. The code is now geared towards STM32 chips and their built-in bootloaders. So, one needs to dig out the right address to jump to, and pass it to the compiler in the `Makefile`. Also, a patch to upstream ChibiOS is needed (supplied), because it `ResetHandler` needs adjusting.
  10. - Sleep LED works, but at the moment only on/off, i.e. no breathing.
  11. - The USB stack works pretty completely; however there are bits of other TMK stuff that are not done yet:
  12. ### Immediate todo
  13. - host-wakeup packet sending during suspend
  14. - power saving for suspend?
  15. - PWM for sleep led
  16. ### Not tested, but possibly working
  17. - backlight
  18. ### Missing / not working (TMK vs ChibiOS bits)
  19. - eeprom / bootmagic (will be chip dependent; eeprom needs to be emulated in flash, which means less writes; wear-levelling?) There is a semi-official ST "driver" for eeprom, with wear-levelling, but I think it consumes a lot of RAM (like 2 pages, i.e. 1kB or so).
  20. ### Tried with
  21. - ChibiOS 3.0.1 and ST F072RB DISCOVERY board.
  22. - Need to test on other STM32 chips (F3, F4) to make it as much chip-independent as possible.
  23. ## STM32-based keyboard design considerations
  24. - STM32F0x2 chips can do crystal-less USB, but they still need a 3.3V voltage regulator.
  25. - The BOOT0 pin should be tied to GND.
  26. - For a hardware way of accessing the in-built DFU bootloader, in addition to the reset button, put another button between the BOOT0 pin and 3V3.
  27. - For breathing the caps lock LED during the suspended state ("sleep LED"), it is desirable to have that LED on a hardware PWM pin (there's usually plenty of those, look for TIMERs in the datasheet).
  28. ## ChibiOS-supported MCUs (as of 3.0.1)
  29. - Pretty much all STM32 chips.
  30. - There is also support for AVR8, but the USB stack is not implemented for them yet, and also the kernel itself takes about 1k of RAM. I think people managed to get ChibiOS running on atmega32[8p/u4] though.
  31. - There is some support for K20 and KL25 Freescale chips (i.e. Teensy 3.0, mchck, FRDM-KL25Z, FRDM-K20D50M), but again, no USB stack yet.
  32. - I've seen community support for Nordic NRF51822 (the chip in Adafruit's Bluefruit bluetooth-low-energy boards), but not sure about the extent.
  33. [ChibiOS]: http://chibios.org