From 6381cde31a6e15dcb7707b000723b21a3d08671f Mon Sep 17 00:00:00 2001 From: asterix Date: Tue, 11 May 2010 12:44:17 +0000 Subject: [PATCH] Add flash module. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3650 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/cpu/cortex-m3/drv/flash_cm3.h | 45 ++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 bertos/cpu/cortex-m3/drv/flash_cm3.h diff --git a/bertos/cpu/cortex-m3/drv/flash_cm3.h b/bertos/cpu/cortex-m3/drv/flash_cm3.h new file mode 100644 index 00000000..bb7020b2 --- /dev/null +++ b/bertos/cpu/cortex-m3/drv/flash_cm3.h @@ -0,0 +1,45 @@ +/** + * \file + * + * + * \brief Low-level flash module for Cortex-M3 (interface). + * + * \author Daniele Basile + */ + +#include + +#if CPU_CM3_LM3S + #include "flash_lm3s.h" +/*#elif Add other Cortex-M3 CPUs here */ +#else + #error Unknown CPU +#endif -- 2.25.1