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.
Hello,
I'm trying to capture NWP logs and I'm having some trouble understanding the steps. The initialization code that it is requesting to be changed to configure Pin 62 need to be done on the CC3100 FW?
How do I accomplish this?
Thank you
You'll need to add the following lines (that configures pin 62) to the PinMuxConfig() function (this function typically can be found in pinmux.c in the SDK examples).
Then rebuild the project.
// If your application already have UART0 configured, no need for this line MAP_PRCMPeripheralClkEnable(PRCM_UARTA0, PRCM_RUN_MODE_CLK); // Mux Pin62 to mode 1 for outputing NWP logs MAP_PinTypeUART(PIN_62, PIN_MODE_1);
Yes, but that configuration needs to be done for pin 62 of the CC3100. I'm not using any of the SDK examples. I'm interfacing with the CC3100 via an STM32 host.
I'm looking through the SDK examples as well and I don't see anything related to pinmux.