format code according to conventions [skip ci]
This commit is contained in:
parent
c2ca57c8f4
commit
355f075b57
2 changed files with 9 additions and 13 deletions
|
@ -92,8 +92,7 @@ void dip_switch_read(bool forced) {
|
|||
dip_switch_state[i] = !readPin(dip_switch_pad[i]);
|
||||
#endif
|
||||
#ifdef DIP_SWITCH_MATRIX_GRID
|
||||
dip_switch_state[i] = peek_matrix(dip_switch_pad[i].row, dip_switch_pad[i].col,
|
||||
read_raw);
|
||||
dip_switch_state[i] = peek_matrix(dip_switch_pad[i].row, dip_switch_pad[i].col, read_raw);
|
||||
#endif
|
||||
dip_switch_mask |= dip_switch_state[i] << i;
|
||||
if (last_dip_switch_state[i] != dip_switch_state[i] || forced) {
|
||||
|
|
|
@ -113,7 +113,4 @@ __attribute__((weak)) uint8_t matrix_scan(void) {
|
|||
return changed;
|
||||
}
|
||||
|
||||
__attribute__((weak)) bool peek_matrix(uint8_t row_index, uint8_t col_index, bool raw) {
|
||||
return 0 != ( (raw? raw_matrix[row_index]:matrix[row_index])
|
||||
& (MATRIX_ROW_SHIFTER << col_index));
|
||||
}
|
||||
__attribute__((weak)) bool peek_matrix(uint8_t row_index, uint8_t col_index, bool raw) { return 0 != ((raw ? raw_matrix[row_index] : matrix[row_index]) & (MATRIX_ROW_SHIFTER << col_index)); }
|
||||
|
|
Loading…
Reference in a new issue