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

13 lines
225 B

#include "ax8052.h"
#include "libmfflash.h"
int8_t flash_write(uint16_t waddr, uint16_t wdata)
{
NVADDR0 = waddr;
NVADDR1 = waddr >> 8;
NVDATA0 = wdata;
NVDATA1 = wdata >> 8;
NVSTATUS = 0x30;
return flash_wait(128);
}

Powered by TurnKey Linux.