X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=boards%2Fstm32-p103%2Fbenchmark%2Fstm32-p103_kernel_footprint%2Fcfg%2Fcfg_context_switch.h;fp=boards%2Fstm32-p103%2Fbenchmark%2Fstm32-p103_kernel_footprint%2Fcfg%2Fcfg_context_switch.h;h=fe0b4f8725be942d45765855b721802b213f5185;hb=d98ef779240b3c49d9313e770048b262c4f8daa3;hp=0000000000000000000000000000000000000000;hpb=1ebcf9b89595826a5c158ae6a68d4c2407b1dd52;p=bertos.git diff --git a/boards/stm32-p103/benchmark/stm32-p103_kernel_footprint/cfg/cfg_context_switch.h b/boards/stm32-p103/benchmark/stm32-p103_kernel_footprint/cfg/cfg_context_switch.h new file mode 100644 index 00000000..fe0b4f87 --- /dev/null +++ b/boards/stm32-p103/benchmark/stm32-p103_kernel_footprint/cfg/cfg_context_switch.h @@ -0,0 +1,71 @@ +/** + * \file + * + * + * \brief Configuration file for the context switch benchmark. + * + * \author Daniele Basile + */ + +#ifndef CFG_CONTEXT_SWITCH_H +#define CFG_CONTEXT_SWITCH_H + +/** + * Use hp timer for the bechmark. + * + * $WIZ$ type = "boolean" + * $WIZ$ module= "boolean" + * $WIZ$ conditional_deps = "ser" + */ +#define CONFIG_USE_HP_TIMER 1 + + +/** + * Use board led for benchmark. + * + * $WIZ$ type = "boolean" + */ +#define CONFIG_USE_LED 1 + + +/** + * Debug console port. + * $WIZ$ type = "int"; min = 0 + */ +#define CONFIG_CTX_DEBUG_PORT 0 + +/** + * Baudrate for the debug console. + * $WIZ$ type = "int"; min = 300 + */ +#define CONFIG_CTX_DEBUG_BAUDRATE 115200UL + +#endif /* CFG_CONTEXT_SWITCH_H */