Ejemplo n.º 1
0
uint32_t us_ticker_read()
{
    if (!us_ticker_inited) {
        us_ticker_init();
    }

    return ~(PIT_GetCurrentTimerCount(PIT, kPIT_Chnl_1));
}
Ejemplo n.º 2
0
uint32_t us_ticker_read()
{
    return ~(PIT_GetCurrentTimerCount(PIT, kPIT_Chnl_1));
}