From: asterix Date: Tue, 11 May 2010 12:44:17 +0000 (+0000) Subject: Add flash module. X-Git-Tag: 2.5.0~267 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=6381cde31a6e15dcb7707b000723b21a3d08671f;p=bertos.git Add flash module. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3650 38d2e660-2303-0410-9eaa-f027e97ec537 --- 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