X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Fsam3n-ek%2Fbenchmark%2Fkernel_footprint%2Fcfg%2Fcfg_proc.h;fp=boards%2Fsam3n-ek%2Fbenchmark%2Fkernel_footprint%2Fcfg%2Fcfg_proc.h;h=0000000000000000000000000000000000000000;hb=55e0bd3abe4af67a82124bf5e97a708f24d5e240;hp=7e64c498702a9c255a0b23ba9daa0c661ae03aef;hpb=e79cd249413d2af644690eaad0856dff90d31533;p=bertos.git diff --git a/boards/sam3n-ek/benchmark/kernel_footprint/cfg/cfg_proc.h b/boards/sam3n-ek/benchmark/kernel_footprint/cfg/cfg_proc.h deleted file mode 100644 index 7e64c498..00000000 --- a/boards/sam3n-ek/benchmark/kernel_footprint/cfg/cfg_proc.h +++ /dev/null @@ -1,107 +0,0 @@ -/** - * \file - * - * - * \brief Kernel configuration parameters - * - * \author Bernie Innocenti - */ - -#ifndef CFG_PROC_H -#define CFG_PROC_H - -/** - * Enable the multithreading kernel. - * - * $WIZ$ type = "autoenabled" - */ -#define CONFIG_KERN 1 - -/** - * Kernel interrupt supervisor. WARNING: Experimental, still incomplete! - * $WIZ$ type = "boolean" - * $WIZ$ supports = "False" - */ -#define CONFIG_KERN_IRQ 0 - -/** - * Preemptive process scheduling. - * - * $WIZ$ type = "boolean" - * $WIZ$ conditional_deps = "timer" - */ -#define CONFIG_KERN_PREEMPT 0 - -/** - * Time sharing quantum (a prime number prevents interference effects) [ms]. - * - * $WIZ$ type = "int" - * $WIZ$ min = 1 - */ -#define CONFIG_KERN_QUANTUM 11 - -/** - * Priority-based scheduling policy. - * $WIZ$ type = "boolean" - */ -#define CONFIG_KERN_PRI 1 - -/** - * Dynamic memory allocation for processes. - * $WIZ$ type = "boolean" - * $WIZ$ conditional_deps = "heap" - */ -#define CONFIG_KERN_HEAP 1 - -/** - * Size of the dynamic memory pool used by processes. - * $WIZ$ type = "int" - * $WIZ$ min = 0 - */ -#define CONFIG_KERN_HEAP_SIZE 2048L - -/** - * Module logging level. - * - * $WIZ$ type = "enum" - * $WIZ$ value_list = "log_level" - */ -#define KERN_LOG_LEVEL LOG_LVL_ERR - -/** - * Module logging format. - * - * $WIZ$ type = "enum" - * $WIZ$ value_list = "log_format" - */ -#define KERN_LOG_FORMAT LOG_FMT_VERBOSE - -#endif /* CFG_PROC_H */