diff options
author | bnewbold <bnewbold@robocracy.org> | 2010-08-31 17:39:46 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2010-08-31 17:39:46 -0400 |
commit | 02d7b08f0497096f21e41922e0efb54c4ef33bab (patch) | |
tree | a7e04293efcba70f37cffcd03c0fcc4c0be7858a /libmaple/flash.c | |
parent | b2dd49c3141d8a21a4e7c7ef51dee7329f847c30 (diff) | |
parent | e03d58f4dab4176514924baa3a1ff430bf5819b8 (diff) | |
download | librambutan-02d7b08f0497096f21e41922e0efb54c4ef33bab.tar.gz librambutan-02d7b08f0497096f21e41922e0efb54c4ef33bab.zip |
Merge maple-native changes into portable
This compiles for both maple and maple_native but is untested.
Diffstat (limited to 'libmaple/flash.c')
-rw-r--r-- | libmaple/flash.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libmaple/flash.c b/libmaple/flash.c index 3fd35d6..828f938 100644 --- a/libmaple/flash.c +++ b/libmaple/flash.c @@ -22,12 +22,19 @@ * THE SOFTWARE. * ****************************************************************************/ +/** + * @brief flash peripheral management functions + */ + + #include "libmaple.h" #include "flash.h" +/* flash registers */ #define FLASH_BASE 0x40022000 #define FLASH_ACR FLASH_BASE +/* flash prefetcher */ #define ACR_PRFTBE BIT(4) #define ACR_PRFTBE_ENABLE BIT(4) @@ -37,7 +44,6 @@ #define FLASH_WRITE_ACR(val) __write(FLASH_ACR, val) #define FLASH_READ_ACR() __read(FLASH_ACR) - /** * @brief turn on the hardware prefetcher */ |