Add ability to write additional code in matrix scann loop on slave. (#3072)
parent
a055a45b13
commit
82500842f6
|
@ -101,6 +101,10 @@ __attribute__ ((weak))
|
||||||
void matrix_scan_user(void) {
|
void matrix_scan_user(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__attribute__ ((weak))
|
||||||
|
void matrix_slave_scan_user(void) {
|
||||||
|
}
|
||||||
|
|
||||||
inline
|
inline
|
||||||
uint8_t matrix_rows(void)
|
uint8_t matrix_rows(void)
|
||||||
{
|
{
|
||||||
|
@ -286,6 +290,7 @@ void matrix_slave_scan(void) {
|
||||||
serial_slave_buffer[i] = matrix[offset+i];
|
serial_slave_buffer[i] = matrix[offset+i];
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
matrix_slave_scan_user();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool matrix_is_modified(void)
|
bool matrix_is_modified(void)
|
||||||
|
|
Loading…
Reference in New Issue