aboutsummaryrefslogtreecommitdiff
path: root/cmake/mcu-stm32/conf/stm32f10x_conf.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/mcu-stm32/conf/stm32f10x_conf.h')
-rw-r--r--cmake/mcu-stm32/conf/stm32f10x_conf.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmake/mcu-stm32/conf/stm32f10x_conf.h b/cmake/mcu-stm32/conf/stm32f10x_conf.h
new file mode 100644
index 0000000..c8f4a4d
--- /dev/null
+++ b/cmake/mcu-stm32/conf/stm32f10x_conf.h
@@ -0,0 +1,18 @@
+#ifndef __STM32F10x_CONF_H
+#define __STM32F10x_CONF_H
+
+#ifdef USE_FULL_ASSERT
+#define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+ void assert_failed(uint8_t* file, uint32_t line);
+#ifdef __cplusplus
+}
+#endif
+#else
+#define assert_param(expr) ((void)0)
+#endif
+
+#endif