/***********************************************************************/ /* This file is part of the ARM Toolchain package */ /* Copyright KEIL ELEKTRONIK GmbH 2003 - 2010 */ /***********************************************************************/ /* */ /* FlashDev.C: Device Description for ST STM32F10x Flash */ /* */ /***********************************************************************/ #include "..\FlashOS.H" // FlashOS Structures #ifdef STM32F10x_16 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "STM32F10x Low-density Flash", // Device Name (16kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00004000, // Device Size in Bytes (16kB) 1024, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 100, // Program Page Timeout 100 mSec 500, // Erase Sector Timeout 500 mSec // Specify Size and Address of Sectors 0x0400, 0x000000, // Sector Size 1kB (128 Sectors) SECTOR_END }; #endif #ifdef STM32F10x_128 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "STM32F10x Med-density Flash", // Device Name (128kB/64kB/32kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00020000, // Device Size in Bytes (128kB) 1024, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 100, // Program Page Timeout 100 mSec 500, // Erase Sector Timeout 500 mSec // Specify Size and Address of Sectors 0x0400, 0x000000, // Sector Size 1kB (128 Sectors) SECTOR_END }; #endif #ifdef STM32F10x_512 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "STM32F10x High-density Flash",// Device Name (512kB/384kB/256kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00080000, // Device Size in Bytes (512kB) 1024, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 100, // Program Page Timeout 100 mSec 500, // Erase Sector Timeout 500 mSec // Specify Size and Address of Sectors 0x0800, 0x000000, // Sector Size 2kB (256 Sectors) SECTOR_END }; #endif #ifdef STM32F10x_1024 struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "STM32F10x XL-density Flash",// Device Name (1024kB/768kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00100000, // Device Size in Bytes (1024kB) 1024, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 100, // Program Page Timeout 100 mSec 500, // Erase Sector Timeout 500 mSec // Specify Size and Address of Sectors 0x0800, 0x000000, // Sector Size 2kB (512 Sectors) SECTOR_END }; #endif #ifdef STM32F10x_CL struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "STM32F10x Connectivity Line Flash",// Device Name (256kB/128kB/64kB) ONCHIP, // Device Type 0x08000000, // Device Start Address 0x00040000, // Device Size in Bytes (256kB) 1024, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 100, // Program Page Timeout 100 mSec 500, // Erase Sector Timeout 500 mSec // Specify Size and Address of Sectors 0x0800, 0x000000, // Sector Size 2kB (128 Sectors) SECTOR_END }; #endif #ifdef FLASH_OPT struct FlashDevice const FlashDevice = { FLASH_DRV_VERS, // Driver Version, do not modify! "STM32F10x Flash Options", // Device Name ONCHIP, // Device Type 0x1FFFF800, // Device Start Address 0x00000010, // Device Size in Bytes (16) 16, // Programming Page Size 0, // Reserved, must be 0 0xFF, // Initial Content of Erased Memory 3000, // Program Page Timeout 3 Sec 3000, // Erase Sector Timeout 3 Sec // Specify Size and Address of Sectors 0x0010, 0x000000, // Sector Size 16B SECTOR_END }; #endif