blob: 7af095708bf64f682e6d2fd0bce0bf4b8a64b729 (
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
|
/***************************************************************************
* 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 PICKIT2_BOOTLOADER_H
#define PICKIT2_BOOTLOADER_H
#include "progs/bootloader/base/bootloader.h"
#include "progs/pickit2/base/pickit2.h"
namespace Pickit2Bootloader
{
//-----------------------------------------------------------------------------
class Hardware : public Bootloader::Hardware
{
public:
Hardware(::Programmer::Base &base);
Pickit2::USBPort &port() { return static_cast<Pickit2::USBPort &>(*_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 internalConnectHardware();
};
//-----------------------------------------------------------------------------
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::Code ); }
virtual bool canReadRange(Pic::MemoryRangeType type) const { return ( type==Pic::MemoryRangeType::Code ); }
virtual bool canWriteRange(Pic::MemoryRangeType type) const { return ( type==Pic::MemoryRangeType::Code ); }
virtual bool doEraseRange(Pic::MemoryRangeType type);
virtual bool doErase(bool) { return doEraseRange(Pic::MemoryRangeType::Code); }
};
} // namespace
#endif
|