我看了,我也是看着这个文档编程的。就是功能没有出来。
void main(void)
{
WDT_A_hold(WDT_A_BASE);
PMM_unlockLPM5();
// system_clock_init();
// CS_setDCOFreq(CS_DCORSEL_1, CS_DCOFSEL_2);
// GPIO_setAsOutputPin(GPIO_PORT_P5,GPIO_PIN2);
// GPIO_setOutputHighOnPin(GPIO_PORT_P5,GPIO_PIN2);
// CS_setExternalClockSource(32768, 0);
GPIO_setAsPeripheralModuleFunctionOutputPin(GPIO_PORT_P5,GPIO_PIN2,GPIO_TERNARY_MODULE_FUNCTION );
GPIO_setAsOutputPin(GPIO_PORT_P5,GPIO_PIN3);
while(1)
{
GPIO_toggleOutputOnPin(GPIO_PORT_P5,GPIO_PIN3);
__delay_cycles(100000);
}
}
|