diff options
author | James Churchill <pelrun@gmail.com> | 2019-03-13 03:23:28 +1000 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-03-12 10:23:28 -0700 |
commit | 37932c293c15011f883a91e91ee02631ead44a2e (patch) | |
tree | f1b4b3b44f816240b06580658b42b3646f121025 /quantum/split_common/split_util.c | |
parent | 25bb059e4e42ed2637202230ff3d8b765e1295cd (diff) |
Next set of split_common changes (#4974)
* Update split_common to use standard i2c drivers
* Eliminate RGB_DIRTY/BACKLIT_DIRTY
* Fix avr i2c_master error handling
* Fix i2c_slave addressing
* Remove unneeded timeout on i2c_stop()
* Fix RGB I2C transfers
* Remove incorrect comment
Diffstat (limited to 'quantum/split_common/split_util.c')
-rw-r--r-- | quantum/split_common/split_util.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/quantum/split_common/split_util.c b/quantum/split_common/split_util.c index 5095cb8fdc..da870f8775 100644 --- a/quantum/split_common/split_util.c +++ b/quantum/split_common/split_util.c @@ -3,7 +3,6 @@ #include "keyboard.h" #include "config.h" #include "timer.h" -#include "split_flags.h" #include "transport.h" #include "quantum.h" @@ -60,10 +59,6 @@ static void keyboard_master_setup(void) { #endif #endif transport_master_init(); - - // For master the Backlight info needs to be sent on startup - // Otherwise the salve won't start with the proper info until an update - BACKLIT_DIRTY = true; } static void keyboard_slave_setup(void) |