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/wt0setcfg.c

14 lines
232 B

#include "ax8052.h"
#include "wtimer.h"
__reentrantb void wtimer0_setconfig(uint8_t cfg) __reentrant
{
if (!((WTCFGA ^ cfg) & 0x3F))
return;
cfg &= 0x3F;
WTCFGA |= 0x04;
WTCFGA = 0x0F;
WTCFGA &= cfg | 0xFC;
WTCFGA = cfg;
}

Powered by TurnKey Linux.