Fix/moonlander leds (#318)

* Additionall fixes

* fix spelling errors

* Remove bad matrix wake code

Co-authored-by: Drashna Jael're <drashna@live.com>
This commit is contained in:
Florian Didron
2020-10-17 14:48:49 +09:00
committed by GitHub
parent a270d67f9f
commit bc8438f739

View File

@@ -264,7 +264,7 @@ void matrix_print(void) {
// Needed for proper wake/sleep
void matrix_power_up(void) {
mcp23018_init();
bool temp_launching = is_launching;
// outputs
setPinOutput(B10);
@@ -274,6 +274,8 @@ void matrix_power_up(void) {
setPinOutput(B14);
setPinOutput(B15);
wait_us(30);
// inputs
setPinInputLow(A0);
setPinInputLow(A1);
@@ -283,10 +285,16 @@ void matrix_power_up(void) {
setPinInputLow(A7);
setPinInputLow(B0);
memset(matrix, 0, MATRIX_ROWS * sizeof(matrix_row_t));
memset(matrix_debouncing, 0, MATRIX_ROWS * sizeof(matrix_row_t));
memset(matrix_debouncing_right, 0, MATRIX_COLS * sizeof(matrix_row_t));
mcp23018_init();
is_launching = temp_launching;
if (!temp_launching) {
ML_LED_1(false);
ML_LED_2(false);
ML_LED_3(false);
ML_LED_4(false);
ML_LED_5(false);
ML_LED_6(false);
}
// initialize matrix state: all keys off
for (uint8_t i=0; i < MATRIX_ROWS; i++) {