Part Number: MSP432E401Y
Tool/software: Code Composer Studio
Hi,
I have MSP432E401Y Launch Pad, this board has inbuilt XDS-110 on-board emulator and just trying to write the startup code in code composer studio by configuring the system clock, initially i am able to successfully dump the code and able to debug, but after executing the following code
i am unable to Dump the code and debug,
void config_clock(void)
{
unsigned int bitwordaddr;
unsigned int bitbandbase;
unsigned int bitwordoffset;
bitbandbase = 0x400FE000;
/*Configure*/
bitwordaddr = bitbandbase + 0xB0;
*(&bitwordaddr) = SYSCTL_RSCLKCFG_NEWFREQ | SYSCTL_RSCLKCFG_USEPLL | SYSCTL_RSCLKCFG_PLLSRC_MOSC|SYSCTL_RSCLKCFG_OSCSRC_MOSC | SYSCTL_RSCLKCFG_PSYSDIV_M;
Following Error message in showing
Error connecting the target:
(Error - 1170 @ 0x0)
Unable to access the DAP. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Emulation package 7.0.100.0)
I have tried following things
1)Resetted the hardware board multiple times and tried to dump the code
2)Changed the emulator USB cable
3)Changed the JTAG Clock spped from default 2.5Mhz to 100Khz,500Khz and 1Mhz and tested the Test Connection it is working fine, but not able to solve the issue
4)Erased the memory
5)Updated the emulator package
But still i am not able to solve the issue. I am sure that this may not be a hardware problem because when i check for test connection it is successful.
Please someone help me
