zmk_mf68/README.md

26 lines
1.3 KiB
Markdown
Raw Normal View History

2020-05-02 06:49:04 +10:00
# Zephyr Mechanical Keyboard (ZMK) Firmware
This project is a complete work in progress, with absolutely nothing functioning yet. The goal is to explore a new MK firmware
with a less restritive license and better BLE support, built on top of the [Zephyr Project](https://www.zephyrproject.org/)
2020-05-16 11:52:25 +10:00
## TODO
- Debouncing in the kscan driver itself? Only some GPIO drivers in Zephyr support it "natively"
2020-05-17 07:30:30 +10:00
- Document boards/shields/keymaps usage.
- Custom keymap code via `zephyr_library()`>
2020-05-16 11:52:25 +10:00
- Move most Kconfig setings to the board/keymap defconfigs and out of the toplevel `prj.conf` file.
- Merge the Kscan GPIO driver upstream, or integrate it locally, to avoid use of Zephyr branch.
- BLE SC by typing in the # prompted on the host.
- Store the connection being authenticated.
- Hook into endpoint flow to detect keypresses and store/send them to the connection once 6 are typed.
- Display support, including displaying BLE SC auth numbers for "numeric comparison" mode if we have the screen.
- Fix BT settings to work w/ Zephyr. Do we really need them?
- Tests?
2020-05-16 11:54:01 +10:00
- Update the kscan GPIO driver to use interrupts.
- Try disabling callbacks for the read pins temporarily when scanning, then re-enabling them.
2020-05-16 11:52:25 +10:00
## Long Term
- Tool to convert keymap `info.json` files into a DTS keymap file?
- Firmware build service?