Error: OpenOCD only supports Debug Module version 2 (0.13), not 1 (dmstatus=0x1). #6
-
Using the Future-Avalanche-Board, I built my own RV32_IMC implementation in Libero with a small amount of TCM and minimal Info : Listening on port 6666 for tcl connections Error: Target not initialized. Return ERROR_FAIL. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
After a few trial/error iterations, I fell-back to the initial reference design (working) and started modifying things one at a time. Turned out that, the example designs all have a coreUARTapb connected to the serial/uart pins of the embedded Flashpro5 (FTDI chip). When that UART is present, the SoftConsole debugger works just fine; when it is removed, I get the error above. Adding a 'dummy' output port that is 'tied-high' and placed on F17 (TX_out) solves the problem. Looking at the board schematic, it's simply a direct connection from the FPGA to the Cbus1 pin on the FTDI chip. I'm not sure why driving this pin (versus leaving it unused - which should provide a weak pull-up) affects operation of the SoftConsole debugger, but apparently, it does. |
Beta Was this translation helpful? Give feedback.
-
@JV73, We tried to replicate this issue on our end. Which version of the Future-Avalanche-Board are you using? |
Beta Was this translation helpful? Give feedback.
After a few trial/error iterations, I fell-back to the initial reference design (working) and started modifying things one at a time. Turned out that, the example designs all have a coreUARTapb connected to the serial/uart pins of the embedded Flashpro5 (FTDI chip). When that UART is present, the SoftConsole debugger works just fine; when it is removed, I get the error above.
Adding a 'dummy' output port that is 'tied-high' and placed on F17 (TX_out) solves the problem. Looking at the board schematic, it's simply a direct connection from the FPGA to the Cbus1 pin on the FTDI chip. I'm not sure why driving this pin (versus leaving it unused - which should provide a weak pull-up) affects op…