summaryrefslogtreecommitdiff
path: root/downloader/downloader.py
blob: 49ffe03ca32bd224efff49e88ab5c6e75e04745f (plain) (blame)
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
#!/usr/bin/python
#
#  spreadspace pic utils
#
#
#  Copyright (C) 2011 Christian Pointner <equinox@spreadspace.org>
#
#  This file is part of spreadspace pic utils.
#
#  spreadspace pic utils 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 3 of the License, or
#  any later version.
#
#  spreadspace pic utils 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 spreadspace pic utils. If not, see <http://www.gnu.org/licenses/>.
#

'''spreadspace simple pic downloader.'''

VERSION = '0.1'

def open_serial(device):
    try:
        dev = os.open(device, os.O_RDWR | os.O_NOCTTY);
        tty.setraw(dev, termios.TCSAFLUSH)
        termios.tcflush(dev, termios.TCIFLUSH)
        return dev

    except OSError, msg:
        print "ERROR: opening serial device: %s" % msg
        sys.exit(3)
    except termios.error, msg:
        print "ERROR: configuring serial device: %s" % msg
        sys.exit(3)

def load_hex(file):
    fin = file
    if fin == '-':
        fin = sys.stdin
    elif not os.path.isfile(fin):
        print "ERROR: File not found: %s" % fin
        sys.exit(1)

    data = {}
    ih = IntelHex(fin)
    for a in ih.addresses():
        if a/2 not in data.keys():
            data[a/2] = 0
        if a%2 == 0:
            data[a/2] += ih[a]
        else:
            data[a/2] += (ih[a] << 8)

    return data


if __name__ == '__main__':
    import getopt
    import os
    import sys
    import termios
    import tty

    from intelhex import IntelHex

    usage = '''spreadspace simple pic downloader.
Usage:
    python downloader.py [options] INFILE

Arguments:
    INFILE      name of hex file for downloading.
                Use '-' for reading from stdin.

Options:
    -h, --help              this help message.
    -v, --version           version info.
    --device=N              the serial port to use (default: /dev/ttyUSB0).
'''

    device = "/dev/ttyUSB0"

    try:
        opts, args = getopt.getopt(sys.argv[1:], "hv",
                                  ["help", "version", "device="])

        for o, a in opts:
            if o in ("-h", "--help"):
                print(usage)
                sys.exit(0)
            elif o in ("-v", "--version"):
                print(VERSION)
                sys.exit(0)
            elif o in ("--device"):
                device = a

        if not args:
            raise getopt.GetoptError('Input file is not specified')

        if len(args) > 1:
            raise getopt.GetoptError('Too many arguments')

    except getopt.GetoptError, msg:
        print "ERROR: %s" % msg
        print usage
        sys.exit(2)

    dev = open_serial(device)
    data = load_hex(args[0])

    addrs = data.keys()
    addrs.sort()
    for a in addrs:
        print "%05d: %04X" % (a, data[a])