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.

137 lines
7.8 KiB

  1. # Converters
  2. Since many drop-in replacement controllers now exist, we've done our best to make them easy to use in existing designs.
  3. This page documents the handy automated process for converting keyboards.
  4. ### Supported Converters
  5. Currently the following converters are available:
  6. | From | To |
  7. |------------|-------------------|
  8. | `promicro` | `proton_c` |
  9. | `promicro` | `kb2040` |
  10. | `promicro` | `promicro_rp2040` |
  11. | `promicro` | `blok` |
  12. | `promicro` | `bit_c_pro` |
  13. | `promicro` | `stemcell` |
  14. | `promicro` | `bonsai_c4` |
  15. See below for more in depth information on each converter.
  16. ## Overview
  17. Each converter category is broken down by its declared `pin compatibility`.
  18. This ensures that only valid combinations are attempted.
  19. You can generate the firmware by appending `-e CONVERT_TO=<target>` to your compile/flash command. For example:
  20. ```sh
  21. qmk flash -c -kb keebio/bdn9/rev1 -km default -e CONVERT_TO=proton_c
  22. ```
  23. You can also add the same `CONVERT_TO=<target>` to your keymap's `rules.mk`, which will accomplish the same thing.
  24. ?> If you get errors about `PORTB/DDRB`, etc not being defined, you'll need to convert the keyboard's code to use the [GPIO Controls](gpio_control.md) that will work for both ARM and AVR. This shouldn't affect the AVR builds at all.
  25. ### Conditional Configuration
  26. Once a converter is enabled, it exposes the `CONVERT_TO_<target_uppercase>` flag that you can use in your code with `#ifdef`s, For example:
  27. ```c
  28. #ifdef CONVERT_TO_PROTON_C
  29. // Proton C code
  30. #else
  31. // Pro Micro code
  32. #endif
  33. ```
  34. ## Pro Micro
  35. If a board currently supported in QMK uses a [Pro Micro](https://www.sparkfun.com/products/12640) (or compatible board), the supported alternative controllers are:
  36. | Device | Target |
  37. |------------------------------------------------------------------------------------------|-------------------|
  38. | [Proton C](https://qmk.fm/proton-c/) | `proton_c` |
  39. | [Adafruit KB2040](https://learn.adafruit.com/adafruit-kb2040) | `kb2040` |
  40. | [SparkFun Pro Micro - RP2040](https://www.sparkfun.com/products/18288) | `promicro_rp2040` |
  41. | [Blok](https://boardsource.xyz/store/628b95b494dfa308a6581622) | `blok` |
  42. | [Bit-C PRO](https://nullbits.co/bit-c-pro) | `bit_c_pro` |
  43. | [STeMCell](https://github.com/megamind4089/STeMCell) | `stemcell` |
  44. | [customMK Bonsai C4](https://shop.custommk.com/products/bonsai-c4-microcontroller-board) | `bonsai_c4` |
  45. Converter summary:
  46. | Target | Argument | `rules.mk` | Condition |
  47. |-------------------|---------------------------------|------------------------------|-------------------------------------|
  48. | `proton_c` | `-e CONVERT_TO=proton_c` | `CONVERT_TO=proton_c` | `#ifdef CONVERT_TO_PROTON_C` |
  49. | `kb2040` | `-e CONVERT_TO=kb2040` | `CONVERT_TO=kb2040` | `#ifdef CONVERT_TO_KB2040` |
  50. | `promicro_rp2040` | `-e CONVERT_TO=promicro_rp2040` | `CONVERT_TO=promicro_rp2040` | `#ifdef CONVERT_TO_PROMICRO_RP2040` |
  51. | `blok` | `-e CONVERT_TO=blok` | `CONVERT_TO=blok` | `#ifdef CONVERT_TO_BLOK` |
  52. | `bit_c_pro` | `-e CONVERT_TO=bit_c_pro` | `CONVERT_TO=bit_c_pro` | `#ifdef CONVERT_TO_BIT_C_PRO` |
  53. | `stemcell` | `-e CONVERT_TO=stemcell` | `CONVERT_TO=stemcell` | `#ifdef CONVERT_TO_STEMCELL` |
  54. | `bonsai_c4` | `-e CONVERT_TO=bonsai_c4` | `CONVERT_TO=bonsai_c4` | `#ifdef CONVERT_TO_BONSAI_C4` |
  55. ### Proton C :id=proton_c
  56. The Proton C only has one on-board LED (C13), and by default, the TXLED (D5) is mapped to it. If you want the RXLED (B0) mapped to it instead, add this line to your `config.h`:
  57. ```c
  58. #define CONVERT_TO_PROTON_C_RXLED
  59. ```
  60. The following defaults are based on what has been implemented for STM32 boards.
  61. | Feature | Notes |
  62. |----------------------------------------------|------------------------------------------------------------------------------------------------------------------|
  63. | [Audio](feature_audio.md) | Enabled |
  64. | [RGB Lighting](feature_rgblight.md) | Disabled |
  65. | [Backlight](feature_backlight.md) | Forces [task driven PWM](feature_backlight.md#software-pwm-driver) until ARM can provide automatic configuration |
  66. | USB Host (e.g. USB-USB converter) | Not supported (USB host code is AVR specific and is not currently supported on ARM) |
  67. | [Split keyboards](feature_split_keyboard.md) | Partial - heavily dependent on enabled features |
  68. ### Adafruit KB2040 :id=kb2040
  69. The following defaults are based on what has been implemented for [RP2040](platformdev_rp2040.md) boards.
  70. | Feature | Notes |
  71. |----------------------------------------------|------------------------------------------------------------------------------------------------------------------|
  72. | [RGB Lighting](feature_rgblight.md) | Enabled via `PIO` vendor driver |
  73. | [Backlight](feature_backlight.md) | Forces [task driven PWM](feature_backlight.md#software-pwm-driver) until ARM can provide automatic configuration |
  74. | USB Host (e.g. USB-USB converter) | Not supported (USB host code is AVR specific and is not currently supported on ARM) |
  75. | [Split keyboards](feature_split_keyboard.md) | Partial via `PIO` vendor driver - heavily dependent on enabled features |
  76. ### SparkFun Pro Micro - RP2040, Blok, and Bit-C PRO :id=promicro_rp2040
  77. Currently identical to [Adafruit KB2040](#kb2040).
  78. ### STeMCell :id=stemcell
  79. Feature set currently identical to [Proton C](#proton_c).
  80. There are two versions of STeMCell available, with different pinouts:
  81. - v1.0.0
  82. - v2.0.0 (pre-release v1.0.1, v1.0.2)
  83. Default official firmware only supports v2.0.0 STeMCell.
  84. STeMCell has support to swap UART and I2C pins, to enable single-wire uart communication in STM chips.
  85. The following additional flags has to be used while compiling, based on the pin used for split communication.
  86. | Split Pin | Compile flags |
  87. |-----------|---------------|
  88. | D3 | -e STMC_US=yes|
  89. | D2 | Not needed |
  90. | D1 | -e STMC_IS=yes|
  91. | D0 | Not needed |
  92. ### Bonsai C4 :id=bonsai_c4
  93. The Bonsai C4 only has one on-board LED (B2), and by default, both the Pro Micro TXLED (D5) and RXLED (B0) are mapped to it. If you want only one of them mapped, you can undefine one and redefine it to another pin by adding these line to your `config.h`:
  94. ```c
  95. #undef B0
  96. // If Vbus detection is unused, we can send RXLED to the Vbus detect pin instead
  97. #define B0 PAL_LINE(GPIOA, 9)
  98. ```
  99. No peripherals are enabled by default at this time, but example code to enable SPI, I2C, PWM, and Serial communications can be found [here](/keyboards/custommk/bonsai_c4_template)