comparison libs/STM32F10x_StdPeriph_Lib_V3.5.0/Project/STM32F10x_StdPeriph_Examples/FSMC/OneNAND/readme.txt @ 0:c59513fd84fb

Initial commit of STM32 test code.
author Daniel O'Connor <darius@dons.net.au>
date Mon, 03 Oct 2011 21:19:15 +1030
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c59513fd84fb
1 /**
2 @page FSMC_OneNAND FSMC OneNAND example
3
4 @verbatim
5 ******************** (C) COPYRIGHT 2011 STMicroelectronics *******************
6 * @file FSMC/OneNAND/readme.txt
7 * @author MCD Application Team
8 * @version V3.5.0
9 * @date 08-April-2011
10 * @brief Description of the FSMC OneNAND example.
11 ******************************************************************************
12 * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
13 * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
14 * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
15 * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
16 * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
17 * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
18 ******************************************************************************
19 @endverbatim
20
21 @par Example Description
22
23 This example shows how to configure the FSMC to drive the OneNAND memory mounted
24 on STM32100E-EVAL board.
25
26 In this example a basic example of how to use the FSMC firmware library and
27 an associate driver to perform read/write operations on the KFG1216U2A/B-DIB6
28 OneNAND memory.
29
30 The different OneNAND memory operations (Unlock, Erase, Write, Read) results are
31 signalled using four LEDs as follows:
32 - LED2, LED3 and LED4 are ON: OneNAND ID read failed
33 - LED3 and LED4 ON: Unlock Block failed
34 - LED2 and LED4 ON: Erase Block failed
35 - LED4 ON: Write Buffer failed
36 - LED2 ON: Asynchronous Read failed
37 - LED3 ON: Synchronous Read
38 - LED1 ON: All OneNAND memory operations are OK
39
40
41 @par Directory contents
42
43 - FSMC/OneNAND/stm32f10x_conf.h Library Configuration file
44 - FSMC/OneNAND/stm32f10x_it.c Interrupt handlers
45 - FSMC/OneNAND/stm32f10x_it.h Header for stm32f10x_it.c
46 - FSMC/OneNAND/main.c Main program
47 - FSMC/OneNAND/system_stm32f10x.c STM32F10x system source file
48
49 @par Hardware and Software environment
50
51 - This example runs on STM32F10x High-density value line Devices.
52
53 - This example has been tested with STM32100E-EVAL and can be easily tailored
54 to any other development board.
55 Make sure that the jumper JP6 is in position 2<->3
56
57
58 @par How to use it ?
59
60 In order to make the program work, you must do the following :
61 - Copy all source files from this example folder to the template folder under
62 Project\STM32F10x_StdPeriph_Template
63 - Open your preferred toolchain
64 - Rebuild all files and load your image into target memory
65 - Run the example
66
67 @note
68 - Low-density Value line devices are STM32F100xx microcontrollers where the
69 Flash memory density ranges between 16 and 32 Kbytes.
70 - Low-density devices are STM32F101xx, STM32F102xx and STM32F103xx
71 microcontrollers where the Flash memory density ranges between 16 and 32 Kbytes.
72 - Medium-density Value line devices are STM32F100xx microcontrollers where
73 the Flash memory density ranges between 64 and 128 Kbytes.
74 - Medium-density devices are STM32F101xx, STM32F102xx and STM32F103xx
75 microcontrollers where the Flash memory density ranges between 64 and 128 Kbytes.
76 - High-density Value line devices are STM32F100xx microcontrollers where
77 the Flash memory density ranges between 256 and 512 Kbytes.
78 - High-density devices are STM32F101xx and STM32F103xx microcontrollers where
79 the Flash memory density ranges between 256 and 512 Kbytes.
80 - XL-density devices are STM32F101xx and STM32F103xx microcontrollers where
81 the Flash memory density ranges between 512 and 1024 Kbytes.
82 - Connectivity line devices are STM32F105xx and STM32F107xx microcontrollers.
83
84 * <h3><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h3>
85 */