forked from biomimetics/imageproc-lib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
uart_driver.c
162 lines (139 loc) · 4.62 KB
/
uart_driver.c
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include "uart_driver.h"
#include "uart.h"
#include "mac_packet.h"
#include "payload.h"
#include "ppool.h"
static MacPacket tx_packet = NULL;
static Payload tx_payload = NULL;
static unsigned char tx_idx;
static unsigned char tx_checksum;
static MacPacket rx_packet = NULL;
static Payload rx_payload = NULL;
static unsigned char rx_idx;
static unsigned char rx_checksum;
static packet_callback rx_callback = NULL;
void uartInit(packet_callback rx_cb)
{
/// UART2 for RS-232 w/PC @ 230400, 8bit, No parity, 1 stop bit
unsigned int U2MODEvalue, U2STAvalue, U2BRGvalue;
U2MODEvalue = UART_EN & UART_IDLE_CON & UART_IrDA_DISABLE &
UART_MODE_SIMPLEX & UART_UEN_00 & UART_DIS_WAKE &
UART_DIS_LOOPBACK & UART_DIS_ABAUD & UART_UXRX_IDLE_ONE &
UART_BRGH_FOUR & UART_NO_PAR_8BIT & UART_1STOPBIT;
U2STAvalue = UART_INT_TX & UART_INT_RX_CHAR &UART_SYNC_BREAK_DISABLED &
UART_TX_ENABLE & UART_ADR_DETECT_DIS &
UART_IrDA_POL_INV_ZERO; // If not, whole output inverted.
U2BRGvalue = 43; // =43 for 230500Baud (Fcy / ({16|4} * baudrate)) - 1
//U2BRGvalue = 1041; // =1041 for 9600 Baud
//U2BRGvalue = 86; // =1041 for 9600 Baud
OpenUART2(U2MODEvalue, U2STAvalue, U2BRGvalue);
tx_idx = UART_TX_IDLE;
rx_idx = UART_RX_IDLE;
rx_callback = rx_cb;
ConfigIntUART2(UART_TX_INT_EN & UART_TX_INT_PR4 & UART_RX_INT_EN & UART_RX_INT_PR4);
EnableIntU2TX;
EnableIntU2RX;
}
//General blocking UART send function, appends basic checksum
void uartSend(unsigned char length, unsigned char *frame)
{
int i;
unsigned char checksum = 0;
while(BusyUART2());
WriteUART2(length);
while(BusyUART2());
WriteUART2(~length);
checksum = 0xFF;
//send payload data
for (i = 0; i < length; i++)
{
checksum += frame[i];
while(BusyUART2());
WriteUART2(frame[i]);
}
//Send Checksum Data
while(BusyUART2());
WriteUART2(checksum);
}
void uartSendPayload(unsigned char type, unsigned char status, unsigned char length, unsigned char *frame) {
MacPacket packet;
Payload pld;
packet = ppoolRequestFullPacket(length);
if(packet == NULL)
return;
pld = packet->payload;
paySetType(pld, type);
paySetStatus(pld, status);
paySetData(pld, length, frame);
uartSendPacket(packet);
}
void uartSendPacket(MacPacket packet) {
if(tx_idx != UART_TX_IDLE) {
ppoolReturnFullPacket(packet);
return;
}
if(packet != NULL && packet->payload_length < UART_MAX_SIZE) {
tx_packet = packet;
tx_payload = packet->payload;
tx_checksum = packet->payload_length + 3; // add three for size, size check, and checksum
tx_idx = UART_TX_SEND_SIZE;
WriteUART2(tx_checksum);
}
}
void __attribute__((interrupt, no_auto_psv)) _U2TXInterrupt(void)
{
unsigned char tx_byte;
if(tx_idx != UART_TX_IDLE) {
if(tx_idx == UART_TX_SEND_SIZE) {
tx_idx = 0;
tx_byte = ~tx_checksum; // send size check
} else if(tx_idx == tx_payload->data_length + PAYLOAD_HEADER_LENGTH) {
ppoolReturnFullPacket(tx_packet);
tx_idx = UART_TX_IDLE;
tx_byte = tx_checksum;
} else {
tx_byte = tx_payload->pld_data[tx_idx++];
}
tx_checksum += tx_byte;
WriteUART2(tx_byte);
}
_U2TXIF = 0;
}
//read data from the UART, and call the proper function based on the Xbee code
void __attribute__((__interrupt__, no_auto_psv)) _U2RXInterrupt(void)
{
unsigned char rx_byte;
if(U2STAbits.OERR) {
U2STAbits.OERR = 0;
}
rx_byte = ReadUART2();
if(rx_idx == UART_RX_IDLE && rx_byte < UART_MAX_SIZE) {
rx_packet = ppoolRequestFullPacket(rx_byte - (PAYLOAD_HEADER_LENGTH+3));
if(rx_packet == NULL) {
return;
} else {
rx_payload = rx_packet->payload;
rx_checksum = rx_byte;
rx_idx = UART_RX_CHECK_SIZE;
}
} else if(rx_idx == UART_RX_CHECK_SIZE){
if((rx_checksum ^ rx_byte) == 0xFF) {
rx_checksum += rx_byte;
rx_idx = 0;
} else {
rx_idx = UART_RX_IDLE;
ppoolReturnFullPacket(rx_packet);
}
} else if (rx_idx == rx_payload->data_length + PAYLOAD_HEADER_LENGTH) {
if(rx_checksum == rx_byte && rx_callback != NULL) {
(rx_callback)(rx_packet);
} else {
ppoolReturnFullPacket(rx_packet);
}
rx_idx = UART_RX_IDLE;
} else {
rx_checksum += rx_byte;
rx_payload->pld_data[rx_idx++] = rx_byte;
}
_U2RXIF = 0;
}