#include "mcc_generated_files/mcc.h" #include "pfodMenu.h" void main(void) { SYSTEM_Initialize(); // Initialize the device INTERRUPT_GlobalInterruptEnable(); // Enable the Global Interrupts INTERRUPT_PeripheralInterruptEnable(); // Enable the Peripheral Interrupts pfodParser_setup(); while (1) { pfodParser_parse(); if (cmd_A_var) { LED_RC0_SetHigh(); } else { LED_RC0_SetLow(); } } }