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

12 lines
167 B

#include "ax8052.h"
#include "libmfflash.h"
void flash_unlock(void)
{
uint8_t __autodata iesave = IE & 0x80;
EA = 0;
NVKEY = 0x41;
NVKEY = 0x78;
IE |= iesave;
}

Powered by TurnKey Linux.