-
Notifications
You must be signed in to change notification settings - Fork 0
/
STM32main.cpp
418 lines (285 loc) · 7.97 KB
/
STM32main.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#include "mbed.h"
#include "ARDOPC.h"
#include <stdarg.h>
#include "stm32f4xx.h"
#include "stm32f4xx_rcc.h"
#include "stm32f4xx_iwdg.h""
//AnalogOut my_output(PA_4);
//short buffer[BUFFER_SIZE];
enum kiss_state_e {
KS_SEARCHING, /* Looking for FEND to start KISS frame. */
KS_COLLECTING}; /* In process of collecting KISS frame. */
#define MAX_KISS_LEN 2048 /* Spec calls for at least 1024. */
/* Might want to make it longer to accomodate */
/* maximum packet length. */
#define MAX_NOISE_LEN 100
typedef struct kiss_frame_s {
enum kiss_state_e state;
unsigned char kiss_msg[MAX_KISS_LEN];
/* Leading FEND is optional. */
/* Contains escapes and ending FEND. */
int kiss_len;
unsigned char noise[MAX_NOISE_LEN];
int noise_len;
} kiss_frame_t;
extern "C" {
void InitValidFrameTypes();
void GetNextFECFrame();
void direwolfmain();
void printtick(char * msg);
void Debugprintf(const char * format, ...);
void dw_printf(const char * format, ...);
void Config_ADC_DMA(void);
void Start_ADC_DMA(void);
void ProcessNewSamples(short * Samples, int nSamples);
void CheckTimers();
void MainPoll();
void HostPoll();
//void SetARDOPProtocolState(int State);
uint32_t DMA_GetCurrentMemoryTarget(DMA_Stream_TypeDef* DMAy_Streamx);
void PollReceivedSamples();
void SetLED(int blnPTT);
void Sleep(int delay);
void SerialSink(UCHAR c);
void SerialSendData(unsigned char * Msg, int Len);
void PollReceivedSamples();
void init_I2C1(void);
void initdisplay();
void kiss_rec_byte(kiss_frame_t *kf, unsigned char ch, int debug, void (*sendfun)(int,unsigned char*,int));
// void kiss_rec_byte(kiss_frame_t *kf, unsigned char ch, int debug);
void kiss_send_rec_packet (int chan, unsigned char *fbuf, int flen);
void recv_process();
int xmit_process();
}
InterruptIn mybutton(USER_BUTTON);
DigitalOut myled(LED1);
Ticker ti;
Serial serial(USBTX, USBRX); // Host PTC Emulation
Serial serial3(PC_10, PC_11); // Debug Port
float delay = 0.001; // 1 mS
volatile int iTick = 0;
volatile bool bTick = 0;
volatile int iClick = 0;
volatile bool bClick = 0;
volatile int ticks;
volatile int ADCInterrupts = 0;
extern volatile int adc_buffer_mem;
#define SAMPLES_PER_BLOCK 1200
int i = 0;
void SetLED(int blnPTT)
{
myled = blnPTT;
}
void tick()
{
bTick = true;
ticks++;
}
void pressed()
{
iClick++;
bClick = true;
}
int lastchan = 0;
// USB Port is used for SCS Host mode link to host.
// Must use interrupts (or possibly DMA) as we can't wait while processing sound.
// HostMode has a maximum frame size of around 262 bytes, and as it is polled
// we only need room for 1 frame
#define SCSBufferSize 280
#define KISSBufferSize 1024
char tx_buffer[SCSBufferSize];
// Circular buffer pointers
// volatile makes read-modify-write atomic
volatile int tx_in=0;
volatile int tx_out=0;
volatile int tx_stopped = 1;
unsigned char rx_buffer[KISSBufferSize];
// Circular buffer pointers
// volatile makes read-modify-write atomic
volatile int rx_in=0;
volatile int rx_out=0;
char line[80];
void SerialSendData(unsigned char * Msg, int Len)
{
int i;
i = 0;
while (i < Len)
{
tx_buffer[tx_in] = Msg[i++];
tx_in = (tx_in + 1) % SCSBufferSize;
}
// disable ints to avoid possible race
// Send first character to start tx interrupts, if stopped
__disable_irq();
if (tx_stopped)
{
serial.putc(tx_buffer[tx_out]);
tx_out = (tx_out + 1) % SCSBufferSize;
tx_stopped = 0;
}
__enable_irq();
return;
}
void rxcallback()
{
// Note: you need to actually read from the serial to clear the RX interrupt
unsigned char c;
c = serial.getc();
rx_buffer[rx_in] = c;
rx_in = (rx_in + 1) % KISSBufferSize;
}
void txcallback()
{
// Loop to fill more than one character in UART's transmit FIFO buffer
// Stop if buffer empty
while ((serial.writeable()) && (tx_in != tx_out))
{
serial.putc(tx_buffer[tx_out]);
tx_out = (tx_out + 1) % SCSBufferSize;
}
if (tx_in == tx_out)
tx_stopped = 1;
return;
}
// Port 3 is used for debugging
// Must use interrupts (or possibly DMA) as we can't wait while processing sound.
// Not sure how big it needs to be. Don't want to use too mach RAM
#define DebugBufferSize 1024
char tx3_buffer[DebugBufferSize];
// Circular buffer pointers
// volatile makes read-modify-write atomic
volatile int tx3_in=0;
volatile int tx3_out=0;
volatile int tx3_stopped = 1;
void Serial3SendData(unsigned char * Msg, int Len)
{
int i;
i = 0;
while (i < Len)
{
tx3_buffer[tx3_in] = Msg[i++];
tx3_in = (tx3_in + 1) % DebugBufferSize;
}
// disable ints to avoid possible race
// Send first character to start tx interrupts, if stopped
__disable_irq();
if (tx3_stopped)
{
serial3.putc(tx3_buffer[tx3_out]);
tx3_out = (tx3_out + 1) % DebugBufferSize;
tx3_stopped = 0;
}
__enable_irq();
return;
}
void rx3callback()
{
// Note: you need to actually read from the serial to clear the RX interrupt
unsigned char c;
c = serial3.getc();
// SerialSink(c);
// serial2.printf("%c", c);
// myled = !myled;
}
void tx3callback()
{
// Loop to fill more than one character in UART's transmit FIFO buffer
// Stop if buffer empty
while ((serial3.writeable()) && (tx3_in != tx3_out))
{
serial3.putc(tx3_buffer[tx3_out]);
tx3_out = (tx3_out + 1) % DebugBufferSize;
}
if (tx3_in == tx3_out)
tx3_stopped = 1;
return;
}
extern kiss_frame_t kf; /* Accumulated KISS frame and state of decoder. */
int kissdebug = 2;
int main()
{
serial.baud(115200);
serial3.baud(115200);
serial.attach(&rxcallback);
serial.attach(&txcallback, Serial::TxIrq);
// serial3.attach(&rxc3allback);
serial3.attach(&tx3callback, Serial::TxIrq);
/* Check if the system has resumed from WWDG reset */
if (RCC_GetFlagStatus(RCC_FLAG_IWDGRST) != RESET)
{
Debugprintf("Reset by watchdog");
RCC_ClearFlag();
}
/* Enable write access to IWDG_PR and IWDG_RLR registers */
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
/* IWDG counter clock: LSI/256, ~6.4ms */
IWDG_SetPrescaler(IWDG_Prescaler_256);
IWDG_SetReload(2000); // ~12 secs
/* Reload IWDG counter */
IWDG_ReloadCounter();
/* Enable IWDG (the LSI oscillator will be enabled by hardware) */
// IWDG_Enable();
Debugprintf("Clock Freq %d", SystemCoreClock);
// init_I2C1();
Debugprintf("i2c init returned");
// initdisplay();
mybutton.fall(&pressed);
ti.attach(tick, .001);
direwolfmain();
myled = 0;
while (1)
{
unsigned char ch;
if (rx_in != rx_out)
{
ch = rx_buffer[rx_out];
rx_out = (rx_out + 1) % KISSBufferSize;
kiss_rec_byte (&kf, ch, kissdebug, kiss_send_rec_packet);
}
PollReceivedSamples();
recv_process();
// See if we have anything to send
xmit_process();
}
}
extern "C" void PlatformSleep()
{
// Called at end of main loop
IWDG_ReloadCounter();
if (bTick)
{
// serial.printf("ADCInterrupts %i %d %d buffer no %d \r\n", ADCInterrupts,
// ADC_Buffer[0][0], ADC_Buffer[1][0], DMA_GetCurrentMemoryTarget(DMA2_Stream0));
bTick = false;
}
if (bClick)
{
bClick = false;
}
myled = !myled;
wait(delay);
}
void Sleep(int delay)
{
wait(delay/1000);
return;
}
VOID Debugprintf(const char * format, ...)
{
char Mess[1000];
va_list(arglist);
va_start(arglist, format);
vsprintf(Mess, format, arglist);
strcat(Mess, "\r\n");
Serial3SendData((unsigned char *)Mess, strlen(Mess));
return;
}
VOID dw_printf(const char * format, ...)
{
char Mess[1000];
va_list(arglist);
va_start(arglist, format);
vsprintf(Mess, format, arglist);
Serial3SendData((unsigned char *)Mess, strlen(Mess));
return;
}