aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmk_core/common/arm_atsam/suspend.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/common/arm_atsam/suspend.c b/tmk_core/common/arm_atsam/suspend.c
index 9c2c47d56..ecf8f0ed1 100644
--- a/tmk_core/common/arm_atsam/suspend.c
+++ b/tmk_core/common/arm_atsam/suspend.c
@@ -78,8 +78,14 @@ void suspend_wakeup_init_kb(void) {
78 */ 78 */
79void suspend_wakeup_init(void) { 79void suspend_wakeup_init(void) {
80#ifdef RGB_MATRIX_ENABLE 80#ifdef RGB_MATRIX_ENABLE
81#ifdef USE_MASSDROP_CONFIGURATOR
82 if (led_enabled) {
83 I2C3733_Control_Set(1);
84 }
85#else
81 I2C3733_Control_Set(1); 86 I2C3733_Control_Set(1);
82#endif 87#endif
88#endif
83 89
84 suspend_wakeup_init_kb(); 90 suspend_wakeup_init_kb();
85} 91}