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 2.0KB

12345678910111213141516171819202122232425262728293031
  1. ## USB stack implementation using ChibiOS
  2. ### Notes
  3. - To use, unpack or symlink ChibiOS here, to `chibios`.
  4. - For gcc options, inspect `chibios.mk`. For instance, I enabled `-Wno-missing-field-initializers`, because TMK common bits generated a lot of hits on that.
  5. Also pay attention to `-O0` (enabled for debugging); for deployment use `-O2`.
  6. - USB string descriptors are a mess. 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` in `main.c`. There should be no such in `usb_main.c`. 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. - power saving for suspend?
  14. - PWM for sleep led
  15. ### Not tested, but possibly working
  16. - backlight
  17. ### Missing / not working (TMK vs ChibiOS bits)
  18. - eeprom / bootmagic (will be chip dependent; eeprom needs to be emulated in flash, which means less writes; wear-levelling?)
  19. ### Tried with
  20. - ChibiOS 3.0.1 and ST F072RB DISCOVERY board.
  21. - Need to test on other STM32 chips (F3, F4) to make it as much chip-independent as possible.