-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
206 lines (183 loc) · 4.55 KB
/
main.cpp
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/**
* RemoteIR library - Test program.
*
* Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
* http://shinta.main.jp/
*/
#include <mbed.h>
#include "ReceiverIR.h"
#include "TransmitterIR.h"
#include "TextLCD.h"
#define TEST_LOOP_BACK 0
ReceiverIR ir_rx(p15);
TransmitterIR ir_tx(p21);
TextLCD lcd(p24, p26, p27, p28, p29, p30);
BusOut led(LED4, LED3, LED2, LED1);
Ticker ledTicker;
/**
* Receive.
*
* @param format Pointer to a format.
* @param buf Pointer to a buffer.
* @param bufsiz Size of the buffer.
*
* @return Bit length of the received data.
*/
int receive(RemoteIR::Format *format, uint8_t *buf, int bufsiz, int timeout = 100) {
int cnt = 0;
while (ir_rx.getState() != ReceiverIR::Received) {
cnt++;
if (timeout < cnt) {
return -1;
}
}
return ir_rx.getData(format, buf, bufsiz * 8);
}
/**
* Transmit.
*
* @param format Format.
* @param buf Pointer to a buffer.
* @param bitlength Bit length of the data.
*
* @return Bit length of the received data.
*/
int transmit(RemoteIR::Format format, uint8_t *buf, int bitlength, int timeout = 100) {
int cnt = 0;
while (ir_tx.getState() != TransmitterIR::Idle) {
cnt++;
if (timeout < cnt) {
return -1;
}
}
return ir_tx.setData(format, buf, bitlength);
}
/**
* Display a current status.
*/
void display_status(char const *status, int bitlength) {
lcd.locate(8, 0);
lcd.printf("%-5.5s:%02d", status, bitlength);
}
/**
* Display a format of a data.
*/
void display_format(RemoteIR::Format format) {
lcd.locate(0, 0);
switch (format) {
case RemoteIR::UNKNOWN:
lcd.printf("????????");
break;
case RemoteIR::NEC:
lcd.printf("NEC ");
break;
case RemoteIR::NEC_REPEAT:
lcd.printf("NEC (R)");
break;
case RemoteIR::AEHA:
lcd.printf("AEHA ");
break;
case RemoteIR::AEHA_REPEAT:
lcd.printf("AEHA (R)");
break;
case RemoteIR::SONY:
lcd.printf("SONY ");
break;
}
}
/**
* Display a data.
*
* @param buf Pointer to a buffer.
* @param bitlength Bit length of a data.
*/
void display_data(uint8_t *buf, int bitlength) {
lcd.locate(0, 1);
const int n = bitlength / 8 + (((bitlength % 8) != 0) ? 1 : 0);
for (int i = 0; i < n; i++) {
lcd.printf("%02X", buf[i]);
}
for (int i = 0; i < 8 - n; i++) {
lcd.printf("--");
}
}
void ledfunc(void) {
led = led + 1;
}
/**
* Entry point.
*/
int main(void) {
ledTicker.attach(callback(&ledfunc), 500ms);
/*
* Splash.
*/
lcd.cls();
lcd.locate(0, 0);
lcd.printf("RemoteIR ");
lcd.locate(0, 1);
lcd.printf("Program example.");
rtos::ThisThread::sleep_for(3s);
/*
* Initialize.
*/
led = 0;
lcd.cls();
lcd.locate(0, 0);
lcd.printf("Press a button ");
lcd.locate(0, 1);
lcd.printf("on a controller.");
/*
* Execute.
*/
while (1) {
uint8_t buf1[32];
uint8_t buf2[32];
int bitlength1;
RemoteIR::Format format;
memset(buf1, 0x00, sizeof(buf1));
memset(buf2, 0x00, sizeof(buf2));
{
bitlength1 = receive(&format, buf1, sizeof(buf1));
if (bitlength1 < 0) {
continue;
}
display_status("RECV", bitlength1);
display_data(buf1, bitlength1);
display_format(format);
}
#if TEST_LOOP_BACK
int bitlength2;
rtos::ThisThread::sleep_for(100ms);
{
bitlength1 = transmit(format, buf1, bitlength1);
if (bitlength1 < 0) {
continue;
}
display_status("TRAN", bitlength1);
display_data(buf1, bitlength1);
display_format(format);
}
rtos::ThisThread::sleep_for(100ms);
{
bitlength2 = receive(&format, buf2, sizeof(buf2));
if (bitlength2 < 0) {
continue;
}
display_status("RECV", bitlength2);
display_data(buf2, bitlength2);
display_format(format);
}
rtos::ThisThread::sleep_for(100ms);
{
for (size_t i = 0; i < sizeof(buf1); i++) {
if (buf1[i] != buf2[i]) {
display_status("CPERR", bitlength2);
rtos::ThisThread::sleep_for(1s);
continue;
}
}
}
#endif
}
}