summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlbert Y <76888457+filterpaper@users.noreply.github.com>2022-07-21 07:54:05 +0800
committerGitHub <noreply@github.com>2022-07-21 00:54:05 +0100
commitd510e80b89b5de54d60ff1a3dc1cca0307161fad (patch)
tree4f2934f867bd809340e91242d61d976699c85f26 /docs
parent4efe6330c49f076b9c01d3f609dea0cd9f9b0214 (diff)
Add Blok 2040 conversion (#17603)
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_converters.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/feature_converters.md b/docs/feature_converters.md
index 9cca76e8e8..11dcc62b2a 100644
--- a/docs/feature_converters.md
+++ b/docs/feature_converters.md
@@ -13,6 +13,7 @@ Currently the following converters are available:
| `promicro` | `proton_c` |
| `promicro` | `kb2040` |
| `promicro` | `promicro_rp2040` |
+| `promicro` | `blok` |
See below for more in depth information on each converter.
@@ -52,6 +53,7 @@ If a board currently supported in QMK uses a [Pro Micro](https://www.sparkfun.co
| [Proton C](https://qmk.fm/proton-c/) | `proton_c` |
| [Adafruit KB2040](https://learn.adafruit.com/adafruit-kb2040) | `kb2040` |
| [SparkFun Pro Micro - RP2040](https://www.sparkfun.com/products/18288) | `promicro_rp2040` |
+| [Blok](https://boardsource.xyz/store/628b95b494dfa308a6581622) | `blok` |
Converter summary:
@@ -60,6 +62,7 @@ Converter summary:
| `proton_c` | `-e CONVERT_TO=proton_c` | `CONVERT_TO=proton_c` | `#ifdef CONVERT_TO_PROTON_C` |
| `kb2040` | `-e CONVERT_TO=kb2040` | `CONVERT_TO=kb2040` | `#ifdef CONVERT_TO_KB2040` |
| `promicro_rp2040` | `-e CONVERT_TO=promicro_rp2040` | `CONVERT_TO=promicro_rp2040` | `#ifdef CONVERT_TO_PROMICRO_RP2040` |
+| `blok` | `-e CONVERT_TO=blok` | `CONVERT_TO=blok` | `#ifdef CONVERT_TO_BLOK` |
### Proton C :id=proton_c
@@ -90,6 +93,6 @@ The following defaults are based on what has been implemented for [RP2040](platf
| USB Host (e.g. USB-USB converter) | Not supported (USB host code is AVR specific and is not currently supported on ARM) |
| [Split keyboards](feature_split_keyboard.md) | Partial via `PIO` vendor driver - heavily dependent on enabled features |
-### SparkFun Pro Micro - RP2040 :id=promicro_rp2040
+### SparkFun Pro Micro - RP2040 and Blok :id=promicro_rp2040
Currently identical to [Adafruit KB2040](#kb2040).