summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-28Remove bt unpair combo + fix keymapNigel Rodriguez
2020-10-27refactor(hid): Refactor consumer report to a configurable sizeinnovaker
2020-10-27refactor(hid): Refactor keypad report to use a configurable integer arrayinnovaker
Replace NKRO bit array with configurable integer (DV) array.
2020-10-27Merge pull request #292 from nullbitsco/nullbitsco_nibblePete Johanson
Add zmk_kscan_gpio_demux kscan driver & NIBBLE keyboard
2020-10-27Update demux kscan driver as per PR feedbackJay Greco
- Remove kscan_gpio_irq_callback - Remove kscan_gpio_irq_callback_handler - Remove irq_callbacks + Add TODO noting timer and sleep state interactions
2020-10-27Update NIBBLE keyboard name as per PR feedbackJay Greco
- Revert accidental VS code settings change
2020-10-27Add NIBBLE shieldJay Greco
+ Added required files for nullbits NIBBLE
2020-10-27Add new kscan_gpio_demux driverJay Greco
+ 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
2020-10-27Merge pull request #304 from petejohanson/docs/cc-license-detailsPete Johanson
Explicitly license documentation as CC-BY-NC-SA.
2020-10-27Merge pull request #301 from innovaker/docs-eslint-prettierPete Johanson
docs: Add eslint, prettier and eslint-mdx support
2020-10-27Merge pull request #297 from Nicell/boards/reviung41Pete Johanson
Add Reviung41 Shield Definitions
2020-10-27Merge pull request #303 from innovaker/kscan-mock-32Pete Johanson
feat(kscan_mock): Increase max number of events
2020-10-26Merge pull request #263 from joelspadin/nested-zmk-configPete Johanson
fix: allow nested zmk-config for dev container
2020-10-26fix(docs): Explicit CC-BY-NC-SA license for docs.Pete Johanson
2020-10-26fix: Typo in the toplevel README.Pete Johanson
2020-10-26Merge pull request #293 from Nicell/bluetooth/battery-reportingPete Johanson
Add Battery Voltage Divider Driver
2020-10-26Merge pull request #302 from innovaker/docs-docusaurus-scriptsPete Johanson
docs: Add missing docusaurus scripts
2020-10-26docs: Set netlify node version to lts/*innovaker
Prerequisite of #218 and PR #308.
2020-10-26Implement Kconfig and enhance error checksNick
2020-10-26docs: Set prettier endOfLine to autoNick
As discussed in PR #301.
2020-10-25Merge pull request #264 from careyk007/setup_sh__curl_always_requiredPete Johanson
Add support for wget to setup.sh
2020-10-25fix: eslint proptype errorsNick
2020-10-25docs: Format docs with prettierinnovaker
npx prettier --write .
2020-10-25docs: Add eslint-mdx supportinnovaker
Official guidelines: https://github.com/mdx-js/eslint-mdx Steps taken: npm i -D eslint-plugin-mdx Edit .eslintrc.js
2020-10-25docs: Add prettier supportinnovaker
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
2020-10-25docs: Add eslint supportinnovaker
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)
2020-10-25feat(kscan_mock): Increase max number of eventsinnovaker
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.
2020-10-25docs: Add missing docusaurus scriptsinnovaker
Add: - docusaurus serve - docusaurus clear
2020-10-24Add Reviung41 Shield DefinitionsNick
2020-10-24fix: clang-formatNick
2020-10-24Remove newlib depNick
2020-10-24Fix wrong comment tokensNigel Rodriguez
2020-10-24Add Boardsource 3x4 shieldNigel Rodriguez
2020-10-23Check if fetch channel is supportedNick
2020-10-23Merge pull request #280 from Tsquash/txpowerdocsPete Johanson
DocumentedTX Power Config in Troubleshooting
2020-10-23Fix build for boards without voltage dividerNick
2020-10-23Add missing ADC and fix formattingNick
2020-10-23Merge branch 'main' into bluetooth/battery-reportingNick Winans
2020-10-23clang-format and add missing defconfig valuesNick
2020-10-23Refactor driver to use Sensor APINick
2020-10-22Merge pull request #291 from innovaker/docusaurus-2.0.0-alpha.66Pete Johanson
chore(docs): Docusaurus 2.0.0-alpha.66
2020-10-21Added Sentence For Link to Zephyr DocsCaleb Lightfoot
2020-10-21Changed Wording of TextCaleb Lightfoot
2020-10-21chore(docs): Docusaurus 2.0.0-alpha.66innovaker
2020-10-21Merge pull request #290 from innovaker/docusaurus-2.0.0-alpha.65Pete Johanson
chore(docs): Docusaurus 2.0.0 alpha.65
2020-10-21chore(blog): Remove deprecated id: wipinnovaker
Fix warning ... 2020-05-24-wip.md - 'id' header option is deprecated. Please use 'slug' option instead. Follow-up to #286.
2020-10-21chore(docs): Replace homePageId with slug: /innovaker
Fix warning ... The docs plugin option homePageId=intro is deprecated. To make a doc the "home", prefer frontmatter: "slug: /" Follow-up to #286.
2020-10-21chore(docs): Docusaurus 2.0.0-alpha.65innovaker
Closes #286. Prerequisite of #218.
2020-10-21fix(docs): Remove empty linksinnovaker
Prerequisite fixes for Docusaurus 2.0.0-alpha.65 (#286) which has stricter markdown rules.
2020-10-20merge changes from masterCarey