File: intelhex.h

package info (click to toggle)
avrprog 0.2.1-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 340 kB
  • ctags: 82
  • sloc: ansic: 987; makefile: 52; sh: 38
file content (62 lines) | stat: -rw-r--r-- 1,912 bytes parent folder | download
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
/*
Copyright (C) 2000-2001 Jos Roberto B. de A. Monteiro <jrm@autsens.com>
                        and Pedro Zorzenon Neto <pzn@autsens.com>

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

#ifndef _INTELHEX_H
#define _INTELHEX_H

#include <stdio.h>

/*
 defining type 'inteldata':
  offset is the address offset
  datalen is the actual number of elements in data
  file is a pointer to the file/stream
  eof_found is set to 1 when :00000001FF if found (endoffile)
  */
typedef struct {
    unsigned char recdata[256];
    unsigned int offset;
    unsigned int reclen;
    FILE * file;
    int eof_found;
} inteldata;

int intelhex_fileopen (inteldata *id, char *filename, int mode);

int intelhex_fileclose (inteldata *id);

/* intelhex_readline returns:
 1  = successfull read - data available
 0  = successfull read - eof_record found
      or did't read because eof_record had already been found
 >1 = unsuccessfull read, error sent to stdout
*/
int intelhex_readline (inteldata *id);

/* put data in inteldata->recdata
   put datalength in inteldata->reclen
   put load offset in inteldata->offset
   then execute intelhex_writeline instruction
*/
int intelhex_writeline (inteldata *id);

// writes an eof record in the file
void intelhex_writeeof (inteldata *id);

#endif