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.
Hi guys, I'm using CCS Version: 5.5.0.00077 , the CCS cannot connect to my TM4C, please help!
Here is the code I used to test device :
#include <stdint.h> #include <stdbool.h> #include "inc/hw_types.h" #include "inc/hw_memmap.h" #include "driverlib/sysctl.h" #include "driverlib/gpio.h" int main(void) { uint32_t value = 0; uint8_t state = 0; SysCtlClockSet( SYSCTL_SYSDIV_2_5 | SYSCTL_USE_PLL | SYSCTL_XTAL_16MHZ | SYSCTL_OSC_MAIN); SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOB); GPIOPinTypeGPIOOutput(GPIO_PORTB_BASE, GPIO_PIN_2); GPIOPinTypeGPIOInput(GPIO_PORTB_BASE, GPIO_PIN_5 | GPIO_PIN_1); GPIOPadConfigSet(GPIO_PORTB_BASE, GPIO_PIN_5 | GPIO_PIN_1, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD_WPU); while (1) { value = GPIOPinRead(GPIO_PORTB_BASE, GPIO_PIN_5 | GPIO_PIN_1); if ((value & GPIO_PIN_1) == 0) { state ^= 4; } if ((value & GPIO_PIN_5) == 0) { state ^= 4; } GPIOPinWrite(GPIO_PORTB_BASE, GPIO_PIN_2, state); SysCtlDelay(10000000); } }
When I debug, CCS show me this error :
I try to use LM FLash but It cannot get the value of register or MAC Address so Debug Port Unlock is not worked
Yeah, you're right, I'm using Launch Pad EK-TM4C123GXL
Code that I used for device is Lab6: Low Power Modes in LaunchPad Workshop
But thanks to you , I remember that It is in hibernate state, so I pressed button reset , power off, power on device again , unlock debug port , and still hold button reset till when it show dialog to release button reset, now it works again,
Thank you very much
Hi Amit,
While USA is noted as, "litigious" society - it is doubtful that "system clock" can be "sued." (clearly typo - "used" was meant" - yet the word play IS clever)
There appears a RASH of such "Lock Outs" far higher here than on all other ARM Forums we visit, combined.
Crack design team - while not taxed w/new additions (i.e. no evidence of such) may examine any "weakness w/in debug/program port" which so often causes dreaded "Lock Out." That's serious - is it not - and while "duly noted" it remains, "duly continuing!" (its plague upon hapless users!)
In fairness - under "paid IAR" w/J-Link - we rarely suffer lock-out. And we always employ the defense mechanism offered by "JTAG-GPIO.C"
Poster should consider "Splashing some green" upon post "Thanks to you" which stimulated his "fix."