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

11 lines
177 B

#include "ax8052.h"
#include "libmfflash.h"
int8_t flash_pageerase(uint16_t pgaddr)
{
NVADDR0 = pgaddr;
NVADDR1 = pgaddr >> 8;
NVSTATUS = 0x20;
return flash_wait(65535);
}

Powered by TurnKey Linux.