1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#pragma once
#include "bin.h"
#include "consts.h"
#define W2_CMDDIR_RX (0)
#define W2_CMDDIR_TX (1)
enum w2_e_serial_commands {
W2_CMD_PING = 0x00,
W2_CMD_EXPT = 0x02,
W2_CMD_MODE = 0x04,
W2_CMD_SPED = 0x06,
W2_CMD_DIRC = 0x08,
W2_CMD_CORD = 0x0a,
W2_CMD_BOMD = 0x0c,
W2_CMD_SRES = 0x0e,
W2_CMD_MCFG = 0x10,
W2_CMD_SENS = 0x12,
W2_CMD_INFO = 0x14,
W2_CMD_DISP = 0x16,
W2_CMD_PLAY = 0x18,
W2_CMD_CLED = 0x1a,
};
/** sercomm ring buffer */
extern w2_s_bin *g_w2_sercomm_buffer[W2_SERCOMM_BUFFER_SIZE];
/** stores head of ring buffer */
extern uint8_t g_w2_error_index;
/** stores start of ring buffer */
extern uint8_t g_w2_error_offset;
/**
* serial pc-robot communication module
*
* - reads and parses incoming serial data
* - sends all data in the message buffer
*/
void w2_sercomm_main();
void w2_sercomm_append_msg(w2_s_bin data);
w2_s_bin w2_sercomm_rx_generic();
w2_s_bin w2_sercomm_tx_generic();
w2_s_bin w2_sercomm_rx_ping();
w2_s_bin w2_sercomm_tx_ping();
w2_s_bin w2_sercomm_tx_expt();
w2_s_bin w2_sercomm_rx_mode();
w2_s_bin w2_sercomm_tx_mode();
w2_s_bin w2_sercomm_rx_sped();
w2_s_bin w2_sercomm_rx_dirc();
w2_s_bin w2_sercomm_rx_cord();
w2_s_bin w2_sercomm_tx_cord();
w2_s_bin w2_sercomm_rx_bomd();
w2_s_bin w2_sercomm_tx_bomd();
w2_s_bin w2_sercomm_rx_sres();
w2_s_bin w2_sercomm_rx_mcfg();
w2_s_bin w2_sercomm_rx_sens();
w2_s_bin w2_sercomm_tx_sens();
w2_s_bin w2_sercomm_rx_info();
w2_s_bin w2_sercomm_tx_info();
w2_s_bin w2_sercomm_rx_disp();
w2_s_bin w2_sercomm_rx_play();
w2_s_bin w2_sercomm_rx_cled();
|