-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathmain.c
More file actions
543 lines (467 loc) · 12.2 KB
/
main.c
File metadata and controls
543 lines (467 loc) · 12.2 KB
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <limits.h>
int RS232_OpenComport(int, int);
int RS232_PollComport(int, unsigned char *, int);
int RS232_SendByte(int, unsigned char);
int RS232_SendBuf(int, unsigned char *, int);
void RS232_CloseComport(int);
void RS232_cputs(int, const char *);
int RS232_IsCTSEnabled(int);
int RS232_IsDSREnabled(int);
void RS232_enableDTR(int);
void RS232_disableDTR(int);
void RS232_enableRTS(int);
void RS232_disableRTS(int);
#define SBEGIN 0x01
#define SDATA 0x02
#define SRSP 0x03
#define SEND 0x04
#define ERRO 0x05
FILE *pfile = NULL;
long fsize = 0;
int BlkTot = 0;
int Remain = 0;
int BlkNum = 0;
int DownloadProgress = 0;
int com = -1;
int end = 0;
int Cport[30], error;
struct termios new_port_settings, old_port_settings[30];
char comports[30][16]={"/dev/ttyS0","/dev/ttyS1","/dev/ttyS2","/dev/ttyS3","/dev/ttyS4","/dev/ttyS5",
"/dev/ttyS6","/dev/ttyS7","/dev/ttyS8","/dev/ttyS9","/dev/ttyS10","/dev/ttyS11",
"/dev/ttyS12","/dev/ttyS13","/dev/ttyS14","/dev/ttyS15","/dev/ttyUSB0",
"/dev/ttyUSB1","/dev/ttyUSB2","/dev/ttyUSB3","/dev/ttyUSB4","/dev/ttyUSB5",
"/dev/ttyAMA0","/dev/ttyAMA1","/dev/ttyACM0","/dev/ttyACM1",
"/dev/rfcomm0","/dev/rfcomm1","/dev/ircomm0","/dev/ircomm1"};
void ProcessProgram(void);
/*
* argv[0]----.exe file name
* argv[1]----ComPort number
* argv[2]----file path
*/
int main(int arg, char *argv[])
{
int fLen = 0;
int device = 0;
if(arg < 4)
{
printf("Invalid parameters.\n");
printf("Usage: %s <com number> <bin file> <device>\n", argv[0]);
printf("Example: %s 2 abc.bin 0\n", argv[0]);
printf(" <device>: 0 -- Default (e.g. UNO)\n");
printf(" 1 -- Leonardo\n");
return 0;
}
int i;
for(i=0; i<30; i++)
{
if(NULL != strstr(comports[i], argv[1]))
{
com = i;
break;
}
else if(i == 29 && com == -1)
{
printf("Port not found, check if arguments are in the correct order.\n");
return 0;
}
}
if(1 == RS232_OpenComport(com, 115200))
{
return 0; // Open comprt error
}
printf("Comport open:\n");
// wait for port to settle
sleep(3);
device = atoi(argv[3]);
if(device == 0)
{
printf("Device : Default (e.g. UNO)\n\n");
printf("Baud:115200 data:8 parity:none stopbit:1 DTR:off RTS:off\n");
RS232_disableDTR(com);
}
else
{
printf("Device: Leonardo\n\n");
printf("Baud:115200 data:8 parity:none stopbit:1 DTR:on RTS:off\n");
RS232_enableDTR(com);
}
RS232_disableRTS(com);
char form[5] = ".bin";
char format[5] = " ";
fLen = strlen(argv[2]);
if(fLen < 5)
{
printf("File path is invalid!\n");
return 0; // file path is not valid
}
format[3] = argv[2][fLen-1];
format[2] = argv[2][fLen-2];
format[1] = argv[2][fLen-3];
format[0] = argv[2][fLen-4];
if(0 != strcmp(form, format))
{
printf("File format must be .bin");
return 0;
}
pfile = fopen(argv[2], "rb"); // read only
if(NULL == pfile)
{
printf("file doesn't exist or is occupied!\n");
return 0;
}
printf("File open success!\n");
fseek(pfile,0,SEEK_SET);
fseek(pfile,0,SEEK_END);
fsize = ftell(pfile);
fseek(pfile,0,SEEK_SET);
//BlkTot = fsize / 512;
Remain = fsize % 512;
if(Remain != 0)
{
BlkTot = fsize / 512 + 1;
printf("Warning: file size isn't the integer multiples of 512, last bytes will be set to 0xFF\n");
}
else
{
BlkTot = fsize / 512;
}
printf("Block total: %d\n", BlkTot);
BlkNum = 0;
printf("Enable transmission...\n");
unsigned char buf[2] = {SBEGIN, 0}; // Enable transmission, do not verify
if(RS232_SendBuf(com, buf, 2) != 2)
{
printf("Enable failed!\n");
fclose(pfile);
printf("File closed!\n");
RS232_CloseComport(com);
printf("Comport closed!\n");
return 0;
}
else
{
printf("Request sent already! Waiting for respond...\n");
}
while(!end)
{
ProcessProgram();
}
printf("Program successfully!\n");
BlkNum = 0;
DownloadProgress = 0;
fclose(pfile);
printf("File closed!\n");
RS232_CloseComport(com);
printf("Comport closed!\n");
return 0;
}
void ProcessProgram()
{
int len;
unsigned char rx;
len = RS232_PollComport(com, &rx, 1);
// do not eat CPU
if (len == 0) usleep(10000);
if(len > 0)
{
switch(rx)
{
case SRSP:
{
if(BlkNum == BlkTot)
{
unsigned char temp = SEND;
RS232_SendByte(com, temp);
end = 1;
}
else
{
if(BlkNum == 0)
{
printf("Begin programming...\n");
}
DownloadProgress = 1;
unsigned char buf[515];
buf[0] = SDATA;
if((BlkNum == (BlkTot-1)) && (Remain != 0))
{
fread(buf+1, Remain, 1, pfile);
int filled = 512 - Remain;
//int i = 0;
for(int i = 0; i<filled; i++)
{
buf[Remain+1+i] = 0xFF;
}
}
else
{
fread(buf+1, 512, 1, pfile);
}
unsigned short CheckSum = 0x0000;
//unsigned int i;
for(unsigned int i=0; i<512; i++)
{
CheckSum += (unsigned char)buf[i+1];
}
buf[513] = (CheckSum >> 8) & 0x00FF;
buf[514] = CheckSum & 0x00FF;
RS232_SendBuf(com, buf, 515);
BlkNum++;
printf("%d ", BlkNum);
}
break;
}
case ERRO:
{
if(DownloadProgress == 1)
{
end = 1;
printf("Verify failed!\n");
}
else
{
end = 1;
printf("No chip detected!\n");
}
break;
}
default:
break;
}
len = 0;
}
}
int RS232_OpenComport(int comport_number, int baudrate)
{
int baudr, status;
if((comport_number>29)||(comport_number<0))
{
printf("illegal comport number\n");
return(1);
}
switch(baudrate)
{
case 50 : baudr = B50;
break;
case 75 : baudr = B75;
break;
case 110 : baudr = B110;
break;
case 134 : baudr = B134;
break;
case 150 : baudr = B150;
break;
case 200 : baudr = B200;
break;
case 300 : baudr = B300;
break;
case 600 : baudr = B600;
break;
case 1200 : baudr = B1200;
break;
case 1800 : baudr = B1800;
break;
case 2400 : baudr = B2400;
break;
case 4800 : baudr = B4800;
break;
case 9600 : baudr = B9600;
break;
case 19200 : baudr = B19200;
break;
case 38400 : baudr = B38400;
break;
case 57600 : baudr = B57600;
break;
case 115200 : baudr = B115200;
break;
case 230400 : baudr = B230400;
break;
case 460800 : baudr = B460800;
break;
case 500000 : baudr = B500000;
break;
case 576000 : baudr = B576000;
break;
case 921600 : baudr = B921600;
break;
case 1000000 : baudr = B1000000;
break;
default : printf("invalid baudrate\n");
return(1);
break;
}
Cport[comport_number] = open(comports[comport_number], O_RDWR | O_NOCTTY | O_NDELAY);
if(Cport[comport_number]==-1)
{
perror("unable to open comport ");
return(1);
}
error = tcgetattr(Cport[comport_number], old_port_settings + comport_number);
if(error==-1)
{
close(Cport[comport_number]);
perror("unable to read portsettings ");
return(1);
}
memset(&new_port_settings, 0, sizeof(new_port_settings)); /* clear the new struct */
new_port_settings.c_cflag = baudr | CS8 | CLOCAL | CREAD;
new_port_settings.c_iflag = IGNPAR;
new_port_settings.c_oflag = 0;
new_port_settings.c_lflag = 0;
new_port_settings.c_cc[VMIN] = 0; /* block untill n bytes are received */
new_port_settings.c_cc[VTIME] = 0; /* block untill a timer expires (n * 100 mSec.) */
error = tcsetattr(Cport[comport_number], TCSANOW, &new_port_settings);
if(error==-1)
{
close(Cport[comport_number]);
perror("unable to adjust portsettings ");
return(1);
}
if(ioctl(Cport[comport_number], TIOCMGET, &status) == -1)
{
perror("unable to get portstatus");
return(1);
}
status |= TIOCM_DTR; /* turn on DTR */
status |= TIOCM_RTS; /* turn on RTS */
if(ioctl(Cport[comport_number], TIOCMSET, &status) == -1)
{
perror("unable to set portstatus");
return(1);
}
return(0);
}
int RS232_PollComport(int comport_number, unsigned char *buf, int size)
{
int n;
#ifndef __STRICT_ANSI__ /* __STRICT_ANSI__ is defined when the -ansi option is used for gcc */
if(size>SSIZE_MAX) size = (int)SSIZE_MAX; /* SSIZE_MAX is defined in limits.h */
#else
if(size>4096) size = 4096;
#endif
n = read(Cport[comport_number], buf, size);
return(n);
}
int RS232_SendByte(int comport_number, unsigned char byte)
{
int n;
n = write(Cport[comport_number], &byte, 1);
if(n<0) return(1);
return(0);
}
int RS232_SendBuf(int comport_number, unsigned char *buf, int size)
{
return(write(Cport[comport_number], buf, size));
}
void RS232_CloseComport(int comport_number)
{
int status;
if(ioctl(Cport[comport_number], TIOCMGET, &status) == -1)
{
perror("unable to get portstatus");
}
status &= ~TIOCM_DTR; /* turn off DTR */
status &= ~TIOCM_RTS; /* turn off RTS */
if(ioctl(Cport[comport_number], TIOCMSET, &status) == -1)
{
perror("unable to set portstatus");
}
close(Cport[comport_number]);
tcsetattr(Cport[comport_number], TCSANOW, old_port_settings + comport_number);
}
/*
Constant Description
TIOCM_LE DSR (data set ready/line enable)
TIOCM_DTR DTR (data terminal ready)
TIOCM_RTS RTS (request to send)
TIOCM_ST Secondary TXD (transmit)
TIOCM_SR Secondary RXD (receive)
TIOCM_CTS CTS (clear to send)
TIOCM_CAR DCD (data carrier detect)
TIOCM_CD Synonym for TIOCM_CAR
TIOCM_RNG RNG (ring)
TIOCM_RI Synonym for TIOCM_RNG
TIOCM_DSR DSR (data set ready)
*/
int RS232_IsCTSEnabled(int comport_number)
{
int status;
ioctl(Cport[comport_number], TIOCMGET, &status);
if(status&TIOCM_CTS) return(1);
else return(0);
}
int RS232_IsDSREnabled(int comport_number)
{
int status;
ioctl(Cport[comport_number], TIOCMGET, &status);
if(status&TIOCM_DSR) return(1);
else return(0);
}
void RS232_enableDTR(int comport_number)
{
int status;
if(ioctl(Cport[comport_number], TIOCMGET, &status) == -1)
{
perror("unable to get portstatus");
}
status |= TIOCM_DTR; /* turn on DTR */
if(ioctl(Cport[comport_number], TIOCMSET, &status) == -1)
{
perror("unable to set portstatus");
}
}
void RS232_disableDTR(int comport_number)
{
int status;
if(ioctl(Cport[comport_number], TIOCMGET, &status) == -1)
{
perror("unable to get portstatus");
}
status &= ~TIOCM_DTR; /* turn off DTR */
if(ioctl(Cport[comport_number], TIOCMSET, &status) == -1)
{
perror("unable to set portstatus");
}
}
void RS232_enableRTS(int comport_number)
{
int status;
if(ioctl(Cport[comport_number], TIOCMGET, &status) == -1)
{
perror("unable to get portstatus");
}
status |= TIOCM_RTS; /* turn on RTS */
if(ioctl(Cport[comport_number], TIOCMSET, &status) == -1)
{
perror("unable to set portstatus");
}
}
void RS232_disableRTS(int comport_number)
{
int status;
if(ioctl(Cport[comport_number], TIOCMGET, &status) == -1)
{
perror("unable to get portstatus");
}
status &= ~TIOCM_RTS; /* turn off RTS */
if(ioctl(Cport[comport_number], TIOCMSET, &status) == -1)
{
perror("unable to set portstatus");
}
}
#ifdef __cplusplus
} /* extern "C" */
#endif