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

8 lines
145 B

#include "libmfflash.h"
uint16_t flash_read(uint16_t raddr)
{
const uint16_t __code *p = (const uint16_t __code *)(raddr & ~1U);
return *p;
}

Powered by TurnKey Linux.