aboutsummaryrefslogtreecommitdiffstats
path: root/packages/simpad-utilities/serload/serialdownload.cpp
blob: c58de2280f5964f3da55125f73488ec07757cd97 (plain)
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
//=============================================================================
// Project:      SIMpad
//=============================================================================
// FILE-NAME:    serialdownload.cpp
// FUNCTION:     Serial download of a new image from PC to SIMpad
//
// AUTHOR:       Juergen Messerer, Peter Voser
// CREAT.-DATE:  01.04.2001 (dd.mm.yy)
//
// NOTES:        -
//
//=============================================================================

#include <iostream>
#include "serialdownload.h"
using namespace std;

//=============================================================================
//=============================================================================
SerialDownload::SerialDownload()
{
}

//=============================================================================
//=============================================================================
SerialDownload::~SerialDownload()
{
}

//=============================================================================
//=============================================================================
int SerialDownload::openSerialPort(const char* portDev, int& errorNumber)
{
    _serialPort = open(portDev, O_RDWR | O_NONBLOCK);

    if (_serialPort == -1)
    {
        errorNumber = errno;
        return -1;
    }

    // Read old serial port setup
    termios serialPortSetup;
    int success = tcgetattr(_serialPort, &serialPortSetup );     
    if (success < 0) 
    {
        errorNumber = errno;
        perror(0);
        return -1;
    }

    serialPortSetup.c_iflag = 0L;
    serialPortSetup.c_oflag = 0L;

    // Control mode flags
    serialPortSetup.c_cflag &= ~(CSTOPB|PARENB|CRTSCTS);
    serialPortSetup.c_cflag |= (CS8|CLOCAL);

    // Local mode flags
    serialPortSetup.c_lflag = 0L;

    // control characters
    serialPortSetup.c_cc[VTIME] = 0;
    serialPortSetup.c_cc[VMIN] = 0;

    // Set baud rate = 38.4kBaud
    cfsetispeed(&serialPortSetup, B38400);
    cfsetospeed(&serialPortSetup, B38400);

    success=tcsetattr(_serialPort, TCSANOW, &serialPortSetup);
    if(success < 0)
    {
        errorNumber = errno;
        perror(0);
        return -1;
    }

    return 0;
}

//=============================================================================
//=============================================================================
int SerialDownload::loadFile(const char *fileName, 
                             char *&buffer, 
                             int &numberOfBytes)
{
    FILE *path;

    if((path = fopen(fileName,"rb")) == 0)
    {
        // Specified file not found.
        return -1;
    }

    fseek(path, 0, 2);
    numberOfBytes = ftell(path);
    rewind(path);

    buffer = (char*)malloc((size_t)numberOfBytes);
    if(buffer == 0)
    {
        // Insufficient memory to load file.
        fclose(path);
        return -2;
    }

    if(fread(buffer, numberOfBytes, 1, path) != 1)
    {
        // Cannot read file.
        fclose(path);
        return -3;
    }

    fclose(path);
    return 0;
}

//=============================================================================
//=============================================================================
bool SerialDownload::changeBaudRate(const int newBaudRate, 
                                    int& errorNumber)
{
    int success;
    int baudRate;
    struct termios setup;

    switch(newBaudRate)
    {
    case 9600:
        baudRate = B9600;
        break;
    case 19200:
        baudRate = B19200;
        break;
    case 38400:
        baudRate = B38400;
        break;
    case 57600:
        baudRate = B57600;
        break;
    case 115200:
        baudRate = B115200;
        break;
    case 230400:
        baudRate = B230400;
        break;
    case 460800:
        baudRate = B460800;
        break;
    default:
        return 0;
        break;
    }

    success = tcgetattr(_serialPort, &setup);
    if (success < 0)
    {
        errorNumber = errno;
        perror(0);
        return 0;
    }

    cfsetispeed(&setup, baudRate);
    cfsetospeed(&setup, baudRate);
    success = tcsetattr(_serialPort, TCSANOW, &setup);
    if (success < 0) 
    {
        errorNumber = errno;
        perror(0);
        return 0;
    }

    return 1;
}

//=============================================================================
//=============================================================================
unsigned char SerialDownload::waitForReply(const int transparent)
{
    unsigned char c(0);
    int numberBytes(0);
    int reply(0);

    struct pollfd commEvent;
    commEvent.fd = _serialPort;
    commEvent.events = POLLIN;

    for(;;)
    {
        // Wait until a character has received.
        do
	{
            reply = poll(&commEvent, 1, 1000);
	}
        while(reply == 0);

        if(commEvent.revents == POLLIN)
        {
            do
	    {
	        numberBytes=read(_serialPort, &c, 1);
	        if(transparent && numberBytes)
	        {
	            cout << c;
                    cout.flush();
                }
                if((c == STX) || 
                   (c == ETX) || 
                   (c == BEL) || 
                   (c == ACK_OK) || 
                   (c == ACK_NOK))
                {
                    return c;
                }
            }
            while(numberBytes);
        }
    }
    return 0;
}

//=============================================================================
//=============================================================================
int SerialDownload::connectToSimpad(const int fastBaudRate, 
                                    int& errorNumber)
{
    errorNumber = 0;
    int bytesWritten;
    unsigned char c;

    // Switch baud rate to low connecting baud rate.
    if(!changeBaudRate(38400, errorNumber))
    {
        return -1;
    }

    // Wait for character STX (02) and BEL (07)
    while(waitForReply(1) != STX);
    while(waitForReply(1) != BEL);
    bytesWritten = write(_serialPort, &ACK_BD, 1);
    if(!bytesWritten)
    {
        errorNumber = errno;
        return -2;
    }

    // Send byte #2 of baud rate
    c = (fastBaudRate>>16)&0xff;
    bytesWritten = write(_serialPort, &c, 1);
    if(!bytesWritten)
    {
        errorNumber = errno;
        return -2;
    }

    // Send byte #1 of baud rate
    c = (fastBaudRate>>8)&0xff;
    bytesWritten = write(_serialPort, &c, 1);
    if(!bytesWritten)
    {
        errorNumber = errno;
        return -2;
    }

    // Send byte #0 of baud rate
    c = fastBaudRate&0xff;
    bytesWritten = write(_serialPort, &c, 1);
    if(!bytesWritten)
    {
        errorNumber = errno;
        return -2;
    }

    c = waitForReply(1);
    if (c == ACK_OK)
    {
        // Switch baud rate to fast baud rate.
        if(!changeBaudRate(fastBaudRate, errorNumber))
        {
	    return -3;
        }
    }

    // Wait for 1st character with new baud rate.
    while(waitForReply(1) != STX);

    bytesWritten = write(_serialPort, &STX, 1);
    if(!bytesWritten)
    {
        errorNumber = errno;
        return -4;
    }

    while(waitForReply(1) != STX);
    return 0;
}

//=============================================================================
//=============================================================================
bool SerialDownload::sendBlock(const char *buffer, 
                               const int length, 
                               int& errorNumber)
{
    errorNumber = 0;
    unsigned char c, check=0xff;
    int i;
    int bytesWritten;

    while(1)
    {
        if(length == 512)
        {
	    // It's a complete block.
	    bytesWritten = write(_serialPort, buffer, 512);
	    if(!bytesWritten)
	    {
	        errorNumber = errno;
	        return 0;
	    }
            // Create checksum.
            for(i = 0; i < 512; ++i)
            {
                check=(check<<1) ^ buffer[i];
            }
        }
        else
        {
            // It's an incomplete block, which must be filled with 
	    // the FILLER pattern. 
	    char lastBlock[512];
	    for(i = 0; i < 512; ++i)
	    {
	        if(i < length)
	        {
	            // Create checksum.
	            check=(check<<1) ^ buffer[i];
	            lastBlock[i] = buffer[i];
	        }
                else
	        {
                    // Create checksum
                    check=(check<<1) ^ FILLER;
                    lastBlock[i] = FILLER;
                }
            }
            bytesWritten = write(_serialPort, lastBlock, 512);
            if(!bytesWritten)
            {
                errorNumber = errno;
                return 0;
            }
        }

        while(waitForReply(1) != STX);

        if(length == 512)
        {
            bytesWritten = write(_serialPort, &STX, 1);
            if(!bytesWritten)
            {
                errorNumber = errno;
                return 0;
            }
        }
        else
        {
            // It was the last block.
            bytesWritten = write(_serialPort, &ETX, 1);
            if(!bytesWritten)
            {
                errorNumber = errno;
                return 0;
            }
        }

        // Send checksum. 
        bytesWritten = write(_serialPort, &check, 1);
        if(!bytesWritten)
        {
            errorNumber = errno;
            return 0;
        }

        // Wait for ACK_OK as confirmation. Send block again otherwise. 
        c = waitForReply(1);
        if(c == ACK_OK)
        {
            // The block was successfully sent.
            return 1;
        }
    }
}

//=============================================================================
//=============================================================================
void SerialDownload::waitForEndOfBurning(void)
{
    // Wait for ETX, which indicates the end of burning.
    while(waitForReply(1) != ETX);

    // Send the characters "r" (erase registry) and "o" (power off).
    char c = 'r';
    int bytesWritten;
    bytesWritten = write(_serialPort, &c, 1);
    c = 'o';
    bytesWritten = write(_serialPort, &c, 1);
    usleep(7000);
}