blob: 7912cd451fdfb681798fbd303ff24f7ef19c2746 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#define LEFT 0
#define RIGHT 1
#define SLAVE 0
#define MASTER 1
#define SPLIT_OPP(x) ((x) == LEFT ? RIGHT : LEFT)
void split_init(void);
void split_task(void);
|