36 #include "contiki-conf.h"
45 #define XMEM_SIZE 1024 * 1024
47 static unsigned char xmem[XMEM_SIZE];
50 xmem_pwrite(
const void *buf,
int size,
unsigned long offset)
63 memcpy(&xmem[offset], buf, size);
68 xmem_pread(
void *buf,
int size,
unsigned long offset)
71 memcpy(buf, &xmem[offset], size);
76 xmem_erase(
long nbytes,
unsigned long offset)
79 memset(&xmem[offset], 0, nbytes);