This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I'm afraid I already know the answer based on a similar CCS5 question. Is there any way to force CCS6 to run a MSP-FET or MSP-FET430UIF in Spy-Bi-Wire mode?
I have inherited a board which was either stupidly or maliciously designed. The designer decided only to hook up the SBW connection, used the wrong value passive, placed it and the 8Mhz crystal far away, routing them side by side for an insane length - in short just about everything you should not do. To make rework nearly impossible this guy used 0402 parts, used no thermal breaks on the power pads so tweezers can't effectively heat enough to remove the wrong parts, placed the components so that a header obscures them so that you really can't rework anything post assembly. Luckily the header was not installed during fab because the assembly house thought it was wrong to place it on top of passives and did not populate them, but the first units we populated with connectors are scrap.
It appears based on web searches that CCS6 automatically picks the JTAG/SBW mode, but, with everything done wrong it always picks wrong. It also picks wrong if I only change the pullup (which is all I can hand rework since luckily the via to 3.3 acts like a bit of a thermal break but the return is just one big plane on the oversized cap.) If I use a MSP430F5529LP's debugger interface and jumpers, CCS6 apparently knows to use SBW and the interface works well enough to load code most of the time.
I don't need diatribes about needing to fix the interface. I don't need warnings about using an intermittent interface and possibly programming wrong. I don't need questions about why the interface was implemented the way it was. The next spin is begun and is actually being done by an actual engineer.
I do need to know if I can force CCS6 to work in SBW mode to maybe get some use out of this batch of hardware.
I looked at a CCS 6.0.1 installation, and by default there is no CCS option to control the JTAG / SBW mode which is used.Michael McCormack said:I do need to know if I can force CCS6 to work in SBW mode to maybe get some use out of this batch of hardware.
By investigation, I found that it is possible to modify the ccsv6\ccs_base\common\targetdb\drivers\msp430_emu.xml file to add a selection of the Interface Type to be used. The modification was to add the following property for the msp430_emu.dvr to the msp430_emu.xml file:
<property Name="Interface Type" desc="Interface Type" Type="choicelist" id="interfaceType" Value="3"> <choice Name="4 Wire JTAG protocol used" value="0"/> <choice Name="2 Wire (Spy-bi-wire) JTAG protocol used" value="1"/> <choice Name="2 Wire Devices accessed by 4wire JTAG protocol" value="2"/> <choice Name="Protocol will be detected automatically" value="3"/> </property>
The modified Windows CCS 6.0.1 msp430_emu.xml is attached
<?xml version="1.0"?> <drivers id="MSP430"> <isa Type="MSP430" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/msp430_emu.dvr"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="msp430.dll" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="1"> <choice Name="Fast" value="0"/> <choice Name="Medium" value="1"/> <choice Name="Slow" value="2"/> </property> <property Name="Interface Type" desc="Interface Type" Type="choicelist" id="interfaceType" Value="3"> <choice Name="4 Wire JTAG protocol used" value="0"/> <choice Name="2 Wire (Spy-bi-wire) JTAG protocol used" value="1"/> <choice Name="2 Wire Devices accessed by 4wire JTAG protocol" value="2"/> <choice Name="Protocol will be detected automatically" value="3"/> </property> </driver> </isa> <isa Type="MSP430L092" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/msp430_emu.dvr"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="msp430.dll" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Name="Emulation Type" desc="Emulation Types" Type="choicelist" id="emuType" Value="0"> <choice value="Normal"/> <choice value="ROM"/> </property> <property Type="hiddenfield" id="L092ActivationCode" Value="0xA55AA55A"></property> <property Type="hiddenfield" id="C092ActivationCode" Value="0x5AA55AA5"></property> <property Type="hiddenfield" id="supportExtMemDL" Value="true"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="0"> <choice Name="Slow" value="2"/> </property> </driver> </isa> <isa Type="MSP430C09x" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/msp430_emu.dvr"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="msp430.dll" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Type="stringfield" id="password" Name="Password: (HEX format)"></property> <property Type="hiddenfield" id="passwordMinLength" Value="8"></property> <property Type="hiddenfield" id="passwordMaxLength" Value="8"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="0"> <choice Name="Slow" value="2"/> </property> </driver> </isa> <isa Type="MSP430FR57xx" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/msp430_emu.dvr"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="msp430.dll" id="dllName" /> <property Type="hiddenfield" id="supportLPMx5" Value="true"></property> <property Type="stringfield" id="password" Name="Password: (HEX format)"></property> <property Type="hiddenfield" id="passwordMinLength" Value="0"></property> <property Type="hiddenfield" id="passwordMaxLength" Value="120"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="1"> <choice Name="Fast" value="0"/> <choice Name="Medium" value="1"/> <choice Name="Slow" value="2"/> </property> <property Name="Interface Type" desc="Interface Type" Type="choicelist" id="interfaceType" Value="3"> <choice Name="4 Wire JTAG protocol used" value="0"/> <choice Name="2 Wire (Spy-bi-wire) JTAG protocol used" value="1"/> <choice Name="2 Wire Devices accessed by 4wire JTAG protocol" value="2"/> <choice Name="Protocol will be detected automatically" value="3"/> </property> </driver> </isa> <isa Type="MSP430FR59xx" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/msp430_emu.dvr"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="msp430.dll" id="dllName" /> <property Type="hiddenfield" id="supportLPMx5" Value="true"></property> <property Type="stringfield" id="password" Name="Password: (HEX format)"></property> <property Type="hiddenfield" id="passwordMinLength" Value="0"></property> <property Type="hiddenfield" id="passwordMaxLength" Value="120"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="1"> <choice Name="Fast" value="0"/> <choice Name="Medium" value="1"/> <choice Name="Slow" value="2"/> </property> <property Name="Interface Type" desc="Interface Type" Type="choicelist" id="interfaceType" Value="3"> <choice Name="4 Wire JTAG protocol used" value="0"/> <choice Name="2 Wire (Spy-bi-wire) JTAG protocol used" value="1"/> <choice Name="2 Wire Devices accessed by 4wire JTAG protocol" value="2"/> <choice Name="Protocol will be detected automatically" value="3"/> </property> </driver> </isa> <isa Type="MSP430F14x" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/msp430_emu.dvr"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="msp430.dll" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="0"> <choice Name="Slow" value="2"/> </property> </driver> </isa> <isa Type="RF430FRL15X" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/msp430_emu.dvr"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="msp430.dll" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Name="Emulation Type" desc="Emulation Types" Type="choicelist" id="emuType" Value="0"> <choice value="Normal"/> <choice value="ROM"/> </property> <property Type="hiddenfield" id="NormalActivationCode" Value="0xA55AA55A"></property> <property Type="hiddenfield" id="ROMActivationCode" Value="0x5AA55AA5"></property> <property Type="hiddenfield" id="supportExtMemDL" Value="true"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="0"> <choice Name="Slow" value="2"/> </property> </driver> </isa> </drivers>
With this XML change the Target Configuration now offers a choice of the Interface Type to be used:
The changes were tested by:
a) Using API Monitor to check that the Interface Type selected on the Target Configuration was passed into the MSP430.dll MSP430_Configure (INTERFACE_TYPE) function for all the four possible interface types.
b) With a MSP-FET430UIF connected to a MSP-5438STK that changing the interface type was having an effect in that the connection worked when "2 Wire Devices accessed by 4wire JTAG protocol" or "Protocol will be detected automatically" were selected, but failed when the other two interface types were selected.
The previous test was using CCS 6.0.1 under Windows. I made the same changes to the msp430_emu.xml file in CCS 6.1 under Linux - attached
<?xml version="1.0"?> <drivers id="MSP430"> <isa Type="MSP430" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/libmsp430_emu.so"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="libmsp430.so" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="1"> <choice Name="Fast" value="0"/> <choice Name="Medium" value="1"/> <choice Name="Slow" value="2"/> </property> <property Name="Interface Type" desc="Interface Type" Type="choicelist" id="interfaceType" Value="3"> <choice Name="4 Wire JTAG protocol used" value="0"/> <choice Name="2 Wire (Spy-bi-wire) JTAG protocol used" value="1"/> <choice Name="2 Wire Devices accessed by 4wire JTAG protocol" value="2"/> <choice Name="Protocol will be detected automatically" value="3"/> </property> </driver> </isa> <isa Type="MSP430L092" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/libmsp430_emu.so"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="libmsp430.so" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Name="Emulation Type" desc="Emulation Types" Type="choicelist" id="emuType" Value="0"> <choice value="Normal"/> <choice value="ROM"/> </property> <property Type="hiddenfield" id="L092ActivationCode" Value="0xA55AA55A"></property> <property Type="hiddenfield" id="C092ActivationCode" Value="0x5AA55AA5"></property> <property Type="hiddenfield" id="supportExtMemDL" Value="true"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="0"> <choice Name="Slow" value="2"/> </property> </driver> </isa> <isa Type="MSP430C09x" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/libmsp430_emu.so"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="libmsp430.so" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Type="stringfield" id="password" Name="Password: (HEX format)"></property> <property Type="hiddenfield" id="passwordMinLength" Value="8"></property> <property Type="hiddenfield" id="passwordMaxLength" Value="8"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="0"> <choice Name="Slow" value="2"/> </property> </driver> </isa> <isa Type="MSP430FR57xx" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/libmsp430_emu.so"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="libmsp430.so" id="dllName" /> <property Type="hiddenfield" id="supportLPMx5" Value="true"></property> <property Type="stringfield" id="password" Name="Password: (HEX format)"></property> <property Type="hiddenfield" id="passwordMinLength" Value="0"></property> <property Type="hiddenfield" id="passwordMaxLength" Value="120"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="1"> <choice Name="Fast" value="0"/> <choice Name="Medium" value="1"/> <choice Name="Slow" value="2"/> </property> <property Name="Interface Type" desc="Interface Type" Type="choicelist" id="interfaceType" Value="3"> <choice Name="4 Wire JTAG protocol used" value="0"/> <choice Name="2 Wire (Spy-bi-wire) JTAG protocol used" value="1"/> <choice Name="2 Wire Devices accessed by 4wire JTAG protocol" value="2"/> <choice Name="Protocol will be detected automatically" value="3"/> </property> </driver> </isa> <isa Type="MSP430FR59xx" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/libmsp430_emu.so"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="libmsp430.so" id="dllName" /> <property Type="hiddenfield" id="supportLPMx5" Value="true"></property> <property Type="stringfield" id="password" Name="Password: (HEX format)"></property> <property Type="hiddenfield" id="passwordMinLength" Value="0"></property> <property Type="hiddenfield" id="passwordMaxLength" Value="120"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="1"> <choice Name="Fast" value="0"/> <choice Name="Medium" value="1"/> <choice Name="Slow" value="2"/> </property> <property Name="Interface Type" desc="Interface Type" Type="choicelist" id="interfaceType" Value="3"> <choice Name="4 Wire JTAG protocol used" value="0"/> <choice Name="2 Wire (Spy-bi-wire) JTAG protocol used" value="1"/> <choice Name="2 Wire Devices accessed by 4wire JTAG protocol" value="2"/> <choice Name="Protocol will be detected automatically" value="3"/> </property> </driver> </isa> <isa Type="MSP430F14x" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/libmsp430_emu.so"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="libmsp430.so" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="0"> <choice Name="Slow" value="2"/> </property> </driver> </isa> <isa Type="RF430FRL15X" ProcID="0x6b800000"> <driver file="../../DebugServer/drivers/libmsp430_emu.so"> <connectionType Type="MSP430"/> <property Type="hiddenfield" Value="libmsp430.so" id="dllName" /> <property Type="hiddenfield" Value="MSP430" id="interface" /> <property Name="Emulation Type" desc="Emulation Types" Type="choicelist" id="emuType" Value="0"> <choice value="Normal"/> <choice value="ROM"/> </property> <property Type="hiddenfield" id="NormalActivationCode" Value="0xA55AA55A"></property> <property Type="hiddenfield" id="ROMActivationCode" Value="0x5AA55AA5"></property> <property Type="hiddenfield" id="supportExtMemDL" Value="true"></property> <property Name="JTAG/SBW Speed" desc="JTAG/SBW Speed" Type="choicelist" id="interfaceSpeed" Value="0"> <choice Name="Slow" value="2"/> </property> </driver> </isa> </drivers>
The modified XML also works with the Linux CCS. When tested with a MSP430F2012 connected only for Spy-Bi-Wire then:
a) When the Interface Type was "2 Wire (Spy-bi-wire) JTAG protocol used" or "Protocol will be detected automatically" was able to connect.
b) When the Interface Type was "4 Wire JTAG protocol used" or "2 Wire Devices accessed by 4wire JTAG protocol" wasn't able to connect.
Thanks for the quick and useful reply. I am (unfortunately) using CCS under Windows so I copied in your changes into my xml file but it seems to work perfectly.
Cheers
Mike