/*************************************************************************** * Copyright (C) 2007 Nicolas Hadacek * * * * 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(*_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