mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-17 19:57:57 -06:00
timer: Move union u32_u16_u from compiler.h to avr/timer.c
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
f582a36e4d
commit
45ba03efa3
2 changed files with 4 additions and 6 deletions
|
@ -69,7 +69,10 @@ static uint32_t timer_last;
|
|||
static __always_inline uint32_t
|
||||
calc_time(uint32_t last, uint16_t cur)
|
||||
{
|
||||
union u32_u16_u calc;
|
||||
union u32_u16_u {
|
||||
struct { uint16_t lo, hi; };
|
||||
uint32_t val;
|
||||
} calc;
|
||||
calc.val = last;
|
||||
if (cur < calc.lo)
|
||||
calc.hi++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue