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

14 lines
232 B

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

Powered by TurnKey Linux.