typedef enum
{
    /* Application's state machine's initial state. */
    APP_STATE_INIT=0,
//    APP_STATE_SERVICE_TASKS,

    /* TODO: Define states used by the application state machine. */

    APP_STATE_IDLE,
    APP_STATE_DISPLAY_ADC_AVERAGE

} APP_STATES;