Age | Commit message (Collapse) | Author |
|
feat: only send HID reports to one endpoint
|
|
refactor(hid): configurable NKRO integer arrays & boot friendly
|
|
|
|
|
|
"Outputs" is probably easier for most people to understand than "endpoints".
|
|
Added a new setting to remember the user's preferred endpoint. When both USB and
BLE are connected, the preferred endpoint will be used.
Added a new behavior to control this setting. It supports commands:
&end END_USB - Prefer USB output
&end END_BLE - Prefer BLE output
&end END_TOG - Toggle between USB and BLE
|
|
Added zmk_ble_active_profile_is_connected() to allow code outside ble.c to check
the status of the active profile, and changed the ble_active_profile_changed
event to also notify when the active profile connects or disconnects.
Changed endpoint selection to to also update when the active profile changes,
connects, or disconnects.
|
|
This prevents stuck keys when switching endpoints by clearing
everything in the HID report and sending one last report before
switching to the new endpoint.
|
|
Added some utility functions and an event for tracking the state of the
USB connection.
Updated endpoints.c to select a single endpoint to send HID reports to
based on the status of the USB and BLE connections. Partially fixes #206.
Future commits will add a user setting to control which endpoint is used if
both USB and BLE are ready.
|
|
docs: Set netlify node version to lts/*
|
|
|
|
Add Boardsource 3x4 shield
|
|
Add missing byte to make keypad report boot friendly.
|
|
|
|
|
|
Replace NKRO bit array with configurable integer (DV) array.
|
|
Add zmk_kscan_gpio_demux kscan driver & NIBBLE keyboard
|
|
- Remove kscan_gpio_irq_callback
- Remove kscan_gpio_irq_callback_handler
- Remove irq_callbacks
+ Add TODO noting timer and sleep state interactions
|
|
- Revert accidental VS code settings change
|
|
+ Added required files for nullbits NIBBLE
|
|
+ zmk,kscan_gpio_demux is now a compatible kscan option
+ kscan_gpio_demux is based heavily off of the implementation of
kscan_gpio_matrix, modified to address cols using an n-to-1
demultiplexer chip instead of discrete IO
+ Added zmk,kscan_gpio_demux.yaml file
* modified CMakeLists to include new source files
|
|
Explicitly license documentation as CC-BY-NC-SA.
|
|
docs: Add eslint, prettier and eslint-mdx support
|
|
Add Reviung41 Shield Definitions
|
|
feat(kscan_mock): Increase max number of events
|
|
fix: allow nested zmk-config for dev container
|
|
|
|
|
|
Add Battery Voltage Divider Driver
|
|
docs: Add missing docusaurus scripts
|
|
Prerequisite of #218 and PR #308.
|
|
|
|
As discussed in PR #301.
|
|
Add support for wget to setup.sh
|
|
|
|
npx prettier --write .
|
|
Official guidelines:
https://github.com/mdx-js/eslint-mdx
Steps taken:
npm i -D eslint-plugin-mdx
Edit .eslintrc.js
|
|
Official guidelines:
https://prettier.io/docs/en/install.html
https://prettier.io/docs/en/integrating-with-linters.html
https://github.com/prettier/eslint-config-prettier
Steps taken:
npm install --save-dev --save-exact prettier
Create .prettierignore
Create .prettierrc.js
npm install --save-dev eslint-config-prettier
Edit .eslintrc.js
|
|
Official guidelines:
https://eslint.org/docs/user-guide/getting-started
Steps taken:
npm install eslint --save-dev
npx eslint --init
Create .eslintignore
Edit .eslintrc.js (tweaks)
|
|
This is necessary for testing a large number of events (e.g. every key code) within a single build/pass.
The u8_t limitation became apparent during end-to-end testing of #21.
|
|
Add:
- docusaurus serve
- docusaurus clear
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DocumentedTX Power Config in Troubleshooting
|
|
|
|
|