Hi, I have a minor issue, I just start to use the Tm4c129 board and I try to run a blink code:
//***************************************************************************** int main(void) { int ui32Loop; SysCtlClockSet(SYSCTL_SYSDIV_2_5 | SYSCTL_USE_PLL | SYSCTL_XTAL_16MHZ | SYSCTL_OSC_MAIN); SysCtlPeripheralEnable(SYSCTL_PERIPH_GPION); GPIOPinTypeGPIOOutput(GPIO_PORTN_BASE,GPIO_PIN_1); SysTickPeriodSet(SysCtlClockGet() / SYSTICKS_PER_SECOND); SysTickIntEnable(); SysTickEnable(); while(1) { // // Turn on the LED. // GPIOPinWrite(GPIO_PORTN_BASE, GPIO_PIN_1, 0); // // Delay for a bit. // for(ui32Loop = 0; ui32Loop < 10000; ui32Loop++) { } // // Turn off the LED. // GPIOPinWrite(GPIO_PORTN_BASE, GPIO_PIN_1, GPIO_PIN_1); // // Delay for a bit. // for(ui32Loop = 0; ui32Loop < 10000; ui32Loop++) { } } }
I don't see the led blink, and when I try to pause the debug pop up the error:
"Can't find a source file at "C:/Jenkins/workspace/TivaWare-Git-Release/DriverLib/build/DriverLib.test/driverlib/gpio.c" "