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

15 lines
229 B

#include "ax8052.h"
#include "libmfosc.h"
/**
* \brief set up LPXOSC
*
*/
__reentrantb void setup_lpxosc(void) __reentrant
{
ANALOGA |= 0x18;
DIRA &= (uint8_t)~0x18;
PORTA &= (uint8_t)~0x18;
MISCCTRL &= (uint8_t)~0x01;
}

Powered by TurnKey Linux.