blob: aff466cf4279d25ab98f02a1bedc9a1e15e9aac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "ch.h"
#ifndef MAX1236_H_
#define MAX1236_H_
#define MAX1236_RX_DEPTH 8
#define MAX1236_TX_DEPTH 2
void init_max1236(void);
void read_max1236(void);
#endif /* MAX1236_H_ */
|