You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/libs/libmf/source/wt0curt.c

14 lines
228 B

#include "ax8052.h"
#include "wtimer.h"
__reentrantb uint32_t wtimer0_curtime(void) __reentrant
{
uint32_t r;
uint8_t iesave = IE & 0x80;
EA = 0;
wtimer0_update();
r = wtimer_state[0].time.cur;
IE |= iesave;
return r;
}

Powered by TurnKey Linux.