diff options
author | Joel Challis <git@zvecr.com> | 2024-09-02 03:48:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-02 03:48:17 +0100 |
commit | 3bd303f204a59ed950934f5da4c299a8be33b363 (patch) | |
tree | 17ff660931b925909be4a75fba55bd67441bf2bb /platforms/arm_atsam/suspend.c | |
parent | 096aca63c5d7789669d90ef5f128189be85b7a35 (diff) |
Remove `arm_atsam` platform (#24337)
Diffstat (limited to 'platforms/arm_atsam/suspend.c')
-rw-r--r-- | platforms/arm_atsam/suspend.c | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/platforms/arm_atsam/suspend.c b/platforms/arm_atsam/suspend.c deleted file mode 100644 index 242e9c91a2..0000000000 --- a/platforms/arm_atsam/suspend.c +++ /dev/null @@ -1,34 +0,0 @@ -#include "matrix.h" -#include "i2c_master.h" -#include "md_rgb_matrix.h" -#include "suspend.h" - -/** \brief Suspend power down - * - * FIXME: needs doc - */ -void suspend_power_down(void) { -#ifdef RGB_MATRIX_ENABLE - I2C3733_Control_Set(0); // Disable LED driver -#endif - - suspend_power_down_kb(); -} - -/** \brief run immediately after wakeup - * - * FIXME: needs doc - */ -void suspend_wakeup_init(void) { -#ifdef RGB_MATRIX_ENABLE -# ifdef USE_MASSDROP_CONFIGURATOR - if (led_enabled) { - I2C3733_Control_Set(1); - } -# else - I2C3733_Control_Set(1); -# endif -#endif - - suspend_wakeup_init_kb(); -} |