mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-22 19:40:29 +08:00
501f2fdef1
* Normalise include statements in core code * Missed one
11 lines
256 B
C
11 lines
256 B
C
#pragma once
|
|
|
|
#include "common/matrix.h"
|
|
|
|
void transport_master_init(void);
|
|
void transport_slave_init(void);
|
|
|
|
// returns false if valid data not received from slave
|
|
bool transport_master(matrix_row_t matrix[]);
|
|
void transport_slave(matrix_row_t matrix[]);
|