Part Number: MSPM0G1107
Other Parts Discussed in Thread: SYSCONFIG
Hi,
I have very simple test project setup in CCS20.5.1. The main function has the following loop:
while (1) {
// Toggle the pin
DL_GPIO_togglePins(GPIO_PORTA_PORT, GPIO_PORTA_PIN_1_PIN);
DL_GPIO_togglePins(GPIO_PORTA_PORT, GPIO_PORTA_PIN_17_PIN);
delay_cycles(8000000);
}
I have exactly the same configuration in .syscfg file for pin 1 (PA0) and pin 17 (PA13). However pin 17 toggles correctly but I do not see the proper outpu ton pin 1. I used the scope and saw the output is always 0V.
What could I have missed? This is my first project with such MCU.
Thanks,
Tianlei