Go to the documentation of this file.
40 #ifndef CFS_COFFEE_ARCH_H
41 #define CFS_COFFEE_ARCH_H
43 #include "contiki-conf.h"
47 #define COFFEE_SECTOR_SIZE 65536UL
48 #define COFFEE_PAGE_SIZE 256UL
49 #define COFFEE_START COFFEE_SECTOR_SIZE
50 #define COFFEE_SIZE (1024UL * 1024UL - COFFEE_START)
51 #define COFFEE_NAME_LENGTH 16
52 #define COFFEE_MAX_OPEN_FILES 6
53 #define COFFEE_FD_SET_SIZE 8
54 #define COFFEE_LOG_TABLE_LIMIT 256
55 #define COFFEE_DYN_SIZE 4*1024
56 #define COFFEE_LOG_SIZE 1024
58 #define COFFEE_IO_SEMANTICS 1
59 #define COFFEE_APPEND_ONLY 0
60 #define COFFEE_MICRO_LOGS 1
63 #define COFFEE_WRITE(buf, size, offset) \
64 xmem_pwrite((char *)(buf), (size), COFFEE_START + (offset))
66 #define COFFEE_READ(buf, size, offset) \
67 xmem_pread((char *)(buf), (size), COFFEE_START + (offset))
69 #define COFFEE_ERASE(sector) \
70 xmem_erase(COFFEE_SECTOR_SIZE, COFFEE_START + (sector) * COFFEE_SECTOR_SIZE)
73 typedef int16_t coffee_page_t;