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

15 lines
225 B

#include "ax8052.h"
#include "libmfosc.h"
/**
* \brief set up XOSC
*
*/
__reentrantb void setup_xosc(void) __reentrant
{
ANALOGA |= 0x03;
DIRA &= (uint8_t)~0x03;
PORTA &= (uint8_t)~0x03;
MISCCTRL &= (uint8_t)~0x02;
}

Powered by TurnKey Linux.