blob: ccce57e444d5268c5993de181fd055e3560e9884 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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[]);
|