Skip to content

Commit

Permalink
Fixed bug causing infinite recursion in refactored FTDI code. Confirm…
Browse files Browse the repository at this point in the history
…ed that JTAG-HS2 now works in JTAG mode
  • Loading branch information
azonenberg committed Aug 31, 2018
1 parent c383f4e commit 0c01995
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions FTDIJtagInterface.cpp
Expand Up @@ -76,12 +76,12 @@ void FTDIJtagInterface::Commit()

string FTDIJtagInterface::GetName()
{
return GetName();
return FTDIDriver::GetName();
}

string FTDIJtagInterface::GetSerial()
{
return GetSerial();
return FTDIDriver::GetSerial();
}

string FTDIJtagInterface::GetUserID()
Expand Down
4 changes: 2 additions & 2 deletions FTDISWDInterface.cpp
Expand Up @@ -76,12 +76,12 @@ void FTDISWDInterface::Commit()

string FTDISWDInterface::GetName()
{
return GetName();
return FTDIDriver::GetName();
}

string FTDISWDInterface::GetSerial()
{
return GetSerial();
return FTDIDriver::GetSerial();
}

string FTDISWDInterface::GetUserID()
Expand Down

0 comments on commit 0c01995

Please sign in to comment.