aboutsummaryrefslogtreecommitdiff
path: root/quantum/split_common/post_config.h
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2019-08-30 11:19:03 -0700
committerskullydazed <skullydazed@users.noreply.github.com>2019-08-30 15:01:52 -0700
commitb624f32f944acdc59dcb130674c09090c5c404cb (patch)
treebc13adbba137d122d9a2c2fb2fafcbb08ac10e25 /quantum/split_common/post_config.h
parent61af76a10d00aba185b8338604171de490a13e3b (diff)
downloadqmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.tar.gz
qmk_firmware-b624f32f944acdc59dcb130674c09090c5c404cb.zip
clang-format changes
Diffstat (limited to 'quantum/split_common/post_config.h')
-rw-r--r--quantum/split_common/post_config.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/quantum/split_common/post_config.h b/quantum/split_common/post_config.h
index ff0fc5e19..5c0b414fb 100644
--- a/quantum/split_common/post_config.h
+++ b/quantum/split_common/post_config.h
@@ -1,19 +1,19 @@
1#if defined(USE_I2C) || defined(EH) 1#if defined(USE_I2C) || defined(EH)
2 // When using I2C, using rgblight implicitly involves split support. 2// When using I2C, using rgblight implicitly involves split support.
3 #if defined(RGBLIGHT_ENABLE) && !defined(RGBLIGHT_SPLIT) 3# if defined(RGBLIGHT_ENABLE) && !defined(RGBLIGHT_SPLIT)
4 #define RGBLIGHT_SPLIT 4# define RGBLIGHT_SPLIT
5 #endif 5# endif
6 6
7 #ifndef F_SCL 7# ifndef F_SCL
8 #define F_SCL 100000UL // SCL frequency 8# define F_SCL 100000UL // SCL frequency
9 #endif 9# endif
10 10
11#else // use serial 11#else // use serial
12 // When using serial, the user must define RGBLIGHT_SPLIT explicitly 12// When using serial, the user must define RGBLIGHT_SPLIT explicitly
13 // in config.h as needed. 13// in config.h as needed.
14 // see quantum/rgblight_post_config.h 14// see quantum/rgblight_post_config.h
15 #if defined(RGBLIGHT_ENABLE) && defined(RGBLIGHT_SPLIT) 15# if defined(RGBLIGHT_ENABLE) && defined(RGBLIGHT_SPLIT)
16 // When using serial and RGBLIGHT_SPLIT need separate transaction 16// When using serial and RGBLIGHT_SPLIT need separate transaction
17 #define SERIAL_USE_MULTI_TRANSACTION 17# define SERIAL_USE_MULTI_TRANSACTION
18 #endif 18# endif
19#endif 19#endif