X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Fstm32-p103%2Ftemplates%2Fempty%2Fcfg%2Fcfg_proc.h;fp=boards%2Fstm32-p103%2Ftemplates%2Fempty%2Fcfg%2Fcfg_proc.h;h=0000000000000000000000000000000000000000;hb=871052ad067d8afb08745171e7ba4e13a71bc45f;hp=b2c3a965b314eb302ac01f7c8081337bff899db4;hpb=9f892b42079e6f254881e57f59b12500042bb3ee;p=bertos.git diff --git a/boards/stm32-p103/templates/empty/cfg/cfg_proc.h b/boards/stm32-p103/templates/empty/cfg/cfg_proc.h deleted file mode 100644 index b2c3a965..00000000 --- a/boards/stm32-p103/templates/empty/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 0 - -/** - * 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 */