/** * \file * * * \brief Configuration file for BattFS module. * * \author Daniele Basile */ #ifndef CFG_BATTFS_H #define CFG_BATTFS_H /** * Module logging level. * * $WIZ$ type = "enum" * $WIZ$ value_list = "log_level" */ #define BATTFS_LOG_LEVEL LOG_LVL_INFO /** * module logging format. * * $WIZ$ type = "enum" * $WIZ$ value_list = "log_format" */ #define BATTFS_LOG_FORMAT LOG_FMT_VERBOSE /** * Set to 1 to enable free page shuffling. * This increase memories life but makes debugging * more difficult due to its unrepeteable state. * $WIZ$ type = "boolean" */ #define CONFIG_BATTFS_SHUFFLE_FREE_PAGES 0 #endif /* BATTFS */