diff options
| author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2019-04-20 07:25:08 +0900 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-04-19 15:25:08 -0700 |
| commit | 7e67bd791b1804e1e362d8c1e90232440c274cee (patch) | |
| tree | 625d0f867d59380de6b48df5e8b2e2f832856cfe /quantum/split_common/post_config.h | |
| parent | dfab177f889fd6701e5f898c869be1bf3a2d0ef9 (diff) | |
| download | qmk_firmware-7e67bd791b1804e1e362d8c1e90232440c274cee.tar.gz qmk_firmware-7e67bd791b1804e1e362d8c1e90232440c274cee.zip | |
Change split_common to use RGBLIGHT_SPLIT (#5509)
* add I2C_slave_buffer_t to quantum/split_common/transport.c
Improvements to ease the maintenance of the I2C slave buffer layout. And this commit does not change the compilation results.
* add temporary pdhelix(Patched Helix) code
* temporary cherry-pick from #5020
add new version(#5020) quantum/rgblight.[ch], quantum/rgblight_modes.h
* add post_config.h support to build_keyboard.mk
* add quantum/rgblight_post_config.h, quantum/split_common/post_config.h
Add quantum/rgblight_post_config.h and quantum/split_common/post_config.h using POST_CONFIG_H variable of build_keyboard.mk.
quantum/rgblight_post_config.h additionally defines RGBLIGHT_SPLIT if RGBLED_SPIT is defined.
quantum/split_common/post_config.h defines RGBLIGHT_SPLIT additionally when master-slave communication is I2C.
* Change split_common's transport.c I2C to use the synchronization feature of rgblight.c
* Change split_common's transport.c serial to use the synchronization feature of rgblight.c
* test RGBLIGHT_SPLIT on keyboards/handwired/pdhelix
* Test End Revert "test RGBLIGHT_SPLIT on keyboards/handwired/pdhelix"
This reverts commit 80118a6bbd3d9fc4c7797fef0c34bc67aa73aa98.
[x] make RGBLIGHT_TEST=1 handwired/pdhelix/i2c:default
[x] make RGBLIGHT_TEST=2 handwired/pdhelix/i2c:default (same RGBLIGHT_TEST=3)
[x] make RGBLIGHT_TEST=3 handwired/pdhelix/i2c:default
[x] make RGBLIGHT_TEST=1 handwired/pdhelix/pd2:default
[x] make RGBLIGHT_TEST=2 handwired/pdhelix/pd2:default
[x] make RGBLIGHT_TEST=3 handwired/pdhelix/pd2:default
[x] make RGBLIGHT_TEST=1 handwired/pdhelix/pd2_2oled:default
[x] make RGBLIGHT_TEST=2 handwired/pdhelix/pd2_2oled:default
[x] make RGBLIGHT_TEST=3 handwired/pdhelix/pd2_2oled:default
* Test End, Revert "temporary cherry-pick from #5020"
This reverts commit d35069f68bda0c50370442a5c7aae60c2f4ce5c0.
* Test End, Revert "add temporary pdhelix(Patched Helix) code"
This reverts commit aebddfc1a879796afae297ef0723a4fe73af3660.
* temporarily cherry-pick from #5020 to see if it passes the travis-ci test.
add new version(#5020) quantum/rgblight.[ch], quantum/rgblight_modes.h
* Passed the travis-ci test. Revert "temporarily cherry-pick from #5020 to see if it passes the travis-ci test."
This reverts commit 647c0a9755eb6a05f76d09b2d59bce67b85a841f.
* update docs/config_options.md
* update split_common/transport.c, improves maintainability of serial transaction IDs.
No change in build result.
* temporary cherry-pick from #5020
* fix build fail keebio/iris/rev3:default
* fix build fail lets_split_eh/eh:default
* Revert "temporary cherry-pick from #5020"
This reverts commit be48ca1b4515366a097af8dd1cd7b28b7ee09947.
* temporary cherry-pick from #5020 (0.6.336)
* Revert "temporary cherry-pick from #5020 (0.6.336)"
This reverts commit 978d26a8b3cf0acc485838a7d76d6128b77c630c.
* temporary cherry-pick from #5020 (0.6.336)
Diffstat (limited to 'quantum/split_common/post_config.h')
| -rw-r--r-- | quantum/split_common/post_config.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/quantum/split_common/post_config.h b/quantum/split_common/post_config.h new file mode 100644 index 000000000..0e59df3d0 --- /dev/null +++ b/quantum/split_common/post_config.h | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | #if defined(USE_I2C) || defined(EH) | ||
| 2 | // When using I2C, using rgblight implicitly involves split support. | ||
| 3 | #if defined(RGBLIGHT_ENABLE) && !defined(RGBLIGHT_SPLIT) | ||
| 4 | #define RGBLIGHT_SPLIT | ||
| 5 | #endif | ||
| 6 | |||
| 7 | #else // use serial | ||
| 8 | // When using serial, the user must define RGBLIGHT_SPLIT explicitly | ||
| 9 | // in config.h as needed. | ||
| 10 | // see quantum/rgblight_post_config.h | ||
| 11 | #if defined(RGBLIGHT_ENABLE) && defined(RGBLIGHT_SPLIT) | ||
| 12 | // When using serial and RGBLIGHT_SPLIT need separate transaction | ||
| 13 | #define SERIAL_USE_MULTI_TRANSACTION | ||
| 14 | #endif | ||
| 15 | #endif | ||
