blob: e0b9caca59339a79ca948d74a9083159760fbc93 (
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
|
/***************************************************************************
* Copyright (C) 2007 Nicolas Hadacek <[email protected]> *
* *
* 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. *
***************************************************************************/
#ifndef PICDEM_BOOTLOADER_H
#define PICDEM_BOOTLOADER_H
#include "progs/bootloader/base/bootloader.h"
#include "common/port/usb_port.h"
namespace PicdemBootloader
{
//-----------------------------------------------------------------------------
class Config : public GenericConfig
{
public:
static uint readVendorId();
static void writeVendorId(uint id);
static uint readProductId();
static void writeProductId(uint id);
private:
Config() : GenericConfig("picdem_bootloader") {}
};
//-----------------------------------------------------------------------------
class Port : public ::Port::USB
{
public:
Port(Log::Base &base);
bool receive(uint nb, TQMemArray<uchar> &array);
bool send(const TQMemArray<uchar> &array);
bool sendAndReceive(TQMemArray<uchar> &data, uint nb);
TQMemArray<uchar> command(uchar instruction, uint address, uint len, uint nb) const;
};
//-----------------------------------------------------------------------------
class Hardware : public Bootloader::Hardware
{
public:
Hardware(::Programmer::Base &base);
Port &port() { return static_cast<Port &>(*_port); }
virtual bool write(Pic::MemoryRangeType type, const Device::Array &data);
virtual bool read(Pic::MemoryRangeType type, Device::Array &data, const ::Programmer::VerifyData *vdata);
virtual bool erase(Pic::MemoryRangeType type);
virtual bool internalConnectHardware();
private:
static uchar readInstruction(Pic::MemoryRangeType type);
static uchar writeInstruction(Pic::MemoryRangeType type);
};
//-----------------------------------------------------------------------------
class DeviceSpecific : public Bootloader::DeviceSpecific
{
public:
DeviceSpecific(::Programmer::Base &base) : Bootloader::DeviceSpecific(base) {}
virtual bool canEraseAll() const { return true; }
virtual bool canEraseRange(Pic::MemoryRangeType type) const { return ( type==Pic::MemoryRangeType::Eeprom || type==Pic::MemoryRangeType::Code ); }
virtual bool canReadRange(Pic::MemoryRangeType) const { return true; }
virtual bool canWriteRange(Pic::MemoryRangeType type) const { return ( type==Pic::MemoryRangeType::Eeprom || type==Pic::MemoryRangeType::Code ); }
virtual bool doEraseRange(Pic::MemoryRangeType type) { return static_cast<Hardware &>(hardware()).erase(type); }
virtual bool doErase(bool) { return doEraseRange(Pic::MemoryRangeType::Code) && doEraseRange(Pic::MemoryRangeType::Eeprom); }
};
} // namespace
#endif
|