forked from Thuffir/xmodem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxmodem.h
123 lines (109 loc) · 6.87 KB
/
xmodem.h
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
/***********************************************************************************************************************
* XMODEM implementation with YMODEM support
***********************************************************************************************************************
* Copyright 2001-2019 Georges Menie (www.menie.org)
* Modified by Thuffir in 2019
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the University of California, Berkeley nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**********************************************************************************************************************/
#ifndef XMODEM_H_
#define XMODEM_H_
/***********************************************************************************************************************
* Config Section
**********************************************************************************************************************/
/* Define this if you have your own CCITT-CRC-16 implementation */
/* #define HAVE_CRC16 */
/* Define this if you want XMODEM-1K support, it will increase stack usage by 896 bytes */
#define XMODEM_1K
#define DLY_1S 1000
#define MAXRETRANS 25
/** End Config Section ************************************************************************************************/
int _inbyte(unsigned short t);
void _outbyte(int c);
/***********************************************************************************************************************
* Function prototype for storing the received chunks
**********************************************************************************************************************/
typedef void (*StoreChunkType)(
/* Pointer to the function context (can be used for anything) */
void *funcCtx,
/* Pointer to the XMODEM receive buffer (store data from here) */
void *xmodemBuffer,
/* Number of bytes received in the XMODEM buffer (and to be stored) */
int xmodemSize);
/***********************************************************************************************************************
* XMODEM Receive
**********************************************************************************************************************/
int XmodemReceive(
/* Function pointer for storing the received chunks or NULL*/
StoreChunkType storeChunk,
/* If storeChunk is NULL, pointer to the buffer to store the received data, else function context pointer to pass to
storeChunk() */
void *ctx,
/* Number of bytes to receive */
int destsz,
/* Checksum mode to request: 0 - arithmetic, 1 - CRC16, 2 - YMODEM-G (CRC16 and no ACK) */
int crc,
/* Receive mode: 0 - normal, nonzero - receive YMODEM control packet */
int mode);
/***********************************************************************************************************************
* Function shortcut - XMODEM Receive with checksum
**********************************************************************************************************************/
#define XmodemReceiveCsum(storeChunk, ctx, destsz) XmodemReceive(storeChunk, ctx, destsz, 0, 0)
/***********************************************************************************************************************
* Function shortcut - XMODEM Receive with CRC-16
**********************************************************************************************************************/
#define XmodemReceiveCrc(storeChunk, ctx, destsz) XmodemReceive(storeChunk, ctx, destsz, 1, 0)
/***********************************************************************************************************************
* Function prototype for fetching the data chunks
**********************************************************************************************************************/
typedef void (*FetchChunkType)(
/* Pointer to the function context (can be used for anything) */
void *funcCtx,
/* Pointer to the XMODEM send buffer (fetch data into here) */
void *xmodemBuffer,
/* Number of bytes that should be fetched (and stored into the XMODEM send buffer) */
int xmodemSize);
/***********************************************************************************************************************
* XMODEM Transmit
**********************************************************************************************************************/
int XmodemTransmit(
/* Function pointer for fetching the data chunks to be sent or NULL*/
FetchChunkType fetchChunk,
/* If fetchChunk is NULL, pointer to the buffer to be sent, else function context pointer to pass to fetchChunk() */
void *ctx,
/* Number of bytes to send */
int srcsz,
/* If nonzero 1024 byte blocks are used (XMODEM-1K) */
int onek,
/* Transfer mode: 0 - normal, nonzero - transmit YMODEM control packet */
int mode);
/***********************************************************************************************************************
* Function shortcut - XMODEM Transmit with 128 bytes blocks
**********************************************************************************************************************/
#define XmodemTransmit128b(fetchChunk, ctx, srcsz) XmodemTransmit(fetchChunk, ctx, srcsz, 0, 0)
/***********************************************************************************************************************
* Function shortcut - XMODEM Transmit with 1K blocks
**********************************************************************************************************************/
#define XmodemTransmit1K(fetchChunk, ctx, srcsz) XmodemTransmit(fetchChunk, ctx, srcsz, 1, 0)
#endif // XMODEM_H_