aboutsummaryrefslogtreecommitdiff
path: root/include/07.pit/deo9
blob: 1deca049fe6a435b68b6f812b5ebb13014b7f16c (plain)
1
2
3
    // Divisor has to be sent byte-wise, so split here into upper/lower bytes.
    uint8_t l = (uint8_t)(divisor & 0xFF);
    uint8_t h = (uint8_t)( (divisor>>8) & 0xFF );