ftdi: drop divide_by_5 param, now it's automatically set/unset according to the frequency. Better freq display

This commit is contained in:
Gwenhael Goavec-Merou
2021-02-19 07:07:10 +01:00
parent 5f9a8835da
commit 7cc5676e8e
10 changed files with 41 additions and 31 deletions
-2
View File
@@ -35,8 +35,6 @@ class AnlogicCable : public JtagInterface {
virtual ~AnlogicCable();
int setClkFreq(uint32_t clkHZ) override;
int setClkFreq(uint32_t clkHZ, char use_divide_by_5) override {
(void)use_divide_by_5; return setClkFreq(clkHZ);}
/* TMS */
int writeTMS(uint8_t *tms, int len, bool flush_buffer) override;