35 #include "contiki-conf.h"
44 #define XMEM_SIZE 1024 * 1024
46 static unsigned char xmem[XMEM_SIZE];
49 xmem_pwrite(
const void *buf,
int size,
unsigned long offset)
62 memcpy(&xmem[offset], buf, size);
67 xmem_pread(
void *buf,
int size,
unsigned long offset)
70 memcpy(buf, &xmem[offset], size);
75 xmem_erase(
long nbytes,
unsigned long offset)
78 memset(&xmem[offset], 0, nbytes);