rename ftdijtag to jtag

- drop everything about ftdi
- use jtagInterface to communicate with hardware
- for all class using jtag: rename FtdiJtag -> Jtag
This commit is contained in:
Gwenhael Goavec-Merou
2020-03-06 09:05:57 +01:00
parent 890fc3c767
commit 9c9348f7d0
18 changed files with 284 additions and 293 deletions
+2 -2
View File
@@ -3,12 +3,12 @@
#include "bitparser.hpp"
#include "device.hpp"
#include "ftdijtag.hpp"
#include "jtag.hpp"
#include "svf_jtag.hpp"
class Altera: public Device {
public:
Altera(FtdiJtag *jtag, std::string filename, bool verbose);
Altera(Jtag *jtag, std::string filename, bool verbose);
~Altera();
void program(unsigned int offset = 0);