Go to the documentation of this file.
41 #ifndef CFS_COFFEE_ARCH_H
42 #define CFS_COFFEE_ARCH_H
44 #include "contiki-conf.h"
55 #define COFFEE_XMEM_TOTAL_SIZE_KB 2048UL //Total size of the External Flash Memory in the Z1
58 #define COFFEE_SECTOR_SIZE 65536UL
59 #define COFFEE_PAGE_SIZE 256UL
60 #define COFFEE_START COFFEE_SECTOR_SIZE
61 #define COFFEE_SIZE (COFFEE_XMEM_TOTAL_SIZE_KB * 1024UL - COFFEE_START)
62 #define COFFEE_NAME_LENGTH 16
63 #define COFFEE_MAX_OPEN_FILES 6
64 #define COFFEE_FD_SET_SIZE 8
65 #define COFFEE_LOG_TABLE_LIMIT 256
66 #define COFFEE_DYN_SIZE 4*1024
67 #define COFFEE_LOG_SIZE 1024
69 #define COFFEE_MICRO_LOGS 1
72 #define COFFEE_WRITE(buf, size, offset) \
73 xmem_pwrite((char *)(buf), (size), COFFEE_START + (offset))
75 #define COFFEE_READ(buf, size, offset) \
76 xmem_pread((char *)(buf), (size), COFFEE_START + (offset))
78 #define COFFEE_ERASE(sector) \
79 xmem_erase(COFFEE_SECTOR_SIZE, COFFEE_START + (sector) * COFFEE_SECTOR_SIZE)
82 typedef int16_t coffee_page_t;