blob: f79e4540279fd6c02272727894a38bd3cfdd1af8 (
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
|
/***************************************************************************
* 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. *
***************************************************************************/
#include "xml_to_data/prog_xml_to_data.h"
#include "progs/picdem_bootloader/base/picdem_bootloader_data.h"
#include "devices/base/device_group.h"
#include "devices/pic/base/pic.h"
//-----------------------------------------------------------------------------
namespace PicdemBootloader
{
class XmlToData : public Programmer::XmlToData<Data>
{
public:
XmlToData(const TQString &folder) : Programmer::XmlToData<Data>(folder, "picdem_bootloader", "PicdemBootloader") {}
private:
virtual void parseData(TQDomElement element, Data &data);
};
void PicdemBootloader::XmlToData::parseData(TQDomElement, Data &)
{
const Device::Data *ddata = Device::lister().data(currentDevice());
if ( ddata->group().name()!="pic" ) tqFatal("non-pic device not supported");
const Pic::Data *pdata = static_cast<const Pic::Data *>(ddata);
if ( !pdata->hasFeature(Pic::Feature::USB) ) tqFatal("device does not have USB");
}
} // namespace
//-----------------------------------------------------------------------------
XML_MAIN(PicdemBootloader::XmlToData)
|