Removed the deprecated COFFEE_DIR_CACHE_ENTRIES parameter.

This commit is contained in:
nvt-se 2009-09-22 16:31:36 +00:00
parent 3b205a8912
commit fc34a4572b
4 changed files with 1 additions and 7 deletions

View File

@ -83,7 +83,6 @@
#define COFFEE_MAX_OPEN_FILES 4
#define COFFEE_FD_SET_SIZE 8
#define COFFEE_LOG_TABLE_LIMIT 16
#define COFFEE_DIR_CACHE_ENTRIES 1
#define COFFEE_DYN_SIZE (COFFEE_PAGE_SIZE * 4)
#define COFFEE_LOG_SIZE 128
@ -132,7 +131,6 @@ void avr_eeprom_erase(uint16_t sector);
#define COFFEE_MAX_OPEN_FILES 4
#define COFFEE_FD_SET_SIZE 8
#define COFFEE_LOG_TABLE_LIMIT 16
#define COFFEE_DIR_CACHE_ENTRIES 1
#define COFFEE_DYN_SIZE (COFFEE_PAGE_SIZE*1)
#define COFFEE_MICRO_LOGS 0
#define COFFEE_LOG_SIZE 128

View File

@ -52,7 +52,6 @@
#define COFFEE_MAX_OPEN_FILES 6
#define COFFEE_FD_SET_SIZE 8
#define COFFEE_LOG_TABLE_LIMIT 256
#define COFFEE_DIR_CACHE_ENTRIES 16
#define COFFEE_DYN_SIZE 32*1024UL
#define COFFEE_LOG_SIZE 8*1024UL
#define COFFEE_MICRO_LOGS 0

View File

@ -54,8 +54,6 @@
#define COFFEE_LOG_DIVISOR 4
#define COFFEE_LOG_SIZE 8192
#define COFFEE_LOG_TABLE_LIMIT 256
#define COFFEE_DIR_CACHE_ENTRIES 16
#define COFFEE_MICRO_LOGS 0
#define COFFEE_WRITE(buf, size, offset) \

View File

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* $Id: CoffeeConfiguration.java,v 1.4 2009/08/11 17:03:59 fros4943 Exp $
* $Id: CoffeeConfiguration.java,v 1.5 2009/09/22 16:31:36 nvt-se Exp $
*
* @author Nicolas Tsiftes
*
@ -45,7 +45,6 @@ public class CoffeeConfiguration {
public static final int FD_SET_SIZE = 256;
public static final int MAX_OPEN_FILES = 256;
public static final int LOG_TABLE_LIMIT = 256;
public static final int DIR_CACHE_ENTRIES = 256;
public static final int NAME_LENGTH = 16;
public static int fsSize, sectorSize, pageSize;
public static int startOffset, pageTypeSize;