comparison libs/STM32F10x_StdPeriph_Lib_V3.5.0/Project/STM32F10x_StdPeriph_Examples/CRC/CRC_Calculation/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 CRC_Calculation CRC Calculation example
3
4 @verbatim
5 ******************** (C) COPYRIGHT 2011 STMicroelectronics *******************
6 * @file CRC/CRC_Calculation/readme.txt
7 * @author MCD Application Team
8 * @version V3.5.0
9 * @date 08-April-2011
10 * @brief Description of the CRC Calculation 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 use CRC (cyclic redundancy check) calculation unit to
24 get a CRC code of a given buffer of data word(32-bit), based on a fixed generator
25 polynomial(0x4C11DB7).
26
27
28 @par Directory contents
29
30 - CRC/CRC_Calculation/stm32f10x_conf.h Library Configuration file
31 - CRC/CRC_Calculation/stm32f10x_it.c Interrupt handlers
32 - CRC/CRC_Calculation/stm32f10x_it.h Header for stm32f10x_it.c
33 - CRC/CRC_Calculation/main.c Main program
34 - CRC/CRC_Calculation/system_stm32f10x.c STM32F10x system source file
35
36 @par Hardware and Software environment
37
38 - This example runs on STM32F10x Connectivity line, High-Density, Medium-Density,
39 High-Density Value line, XL-Density, Medium-Density Value line, Low-Density
40 and Low-Density Value line Devices.
41
42 - This example has been tested with STMicroelectronics STM32100E-EVAL (High-Density
43 Value line), STM32100B-EVAL (Medium-Density Value line), STM3210C-EVAL
44 (Connectivity line), STM3210E-EVAL (High-Density and XL-Density) and
45 STM3210B-EVAL (Medium-Density) evaluation boards and can be easily tailored
46 to any other supported device and development board.
47 To select the STMicroelectronics evaluation board used to run the example,
48 uncomment the corresponding line in stm32_eval.h file (under Utilities\STM32_EVAL)
49
50
51 @par How to use it ?
52
53 In order to make the program work, you must do the following :
54 - Copy all source files from this example folder to the template folder under
55 Project\STM32F10x_StdPeriph_Template
56 - Open your preferred toolchain
57 - Rebuild all files and load your image into target memory
58 - Run the example
59
60 @note
61 - Low-density Value line devices are STM32F100xx microcontrollers where the
62 Flash memory density ranges between 16 and 32 Kbytes.
63 - Low-density devices are STM32F101xx, STM32F102xx and STM32F103xx
64 microcontrollers where the Flash memory density ranges between 16 and 32 Kbytes.
65 - Medium-density Value line devices are STM32F100xx microcontrollers where
66 the Flash memory density ranges between 64 and 128 Kbytes.
67 - Medium-density devices are STM32F101xx, STM32F102xx and STM32F103xx
68 microcontrollers where the Flash memory density ranges between 64 and 128 Kbytes.
69 - High-density Value line devices are STM32F100xx microcontrollers where
70 the Flash memory density ranges between 256 and 512 Kbytes.
71 - High-density devices are STM32F101xx and STM32F103xx microcontrollers where
72 the Flash memory density ranges between 256 and 512 Kbytes.
73 - XL-density devices are STM32F101xx and STM32F103xx microcontrollers where
74 the Flash memory density ranges between 512 and 1024 Kbytes.
75 - Connectivity line devices are STM32F105xx and STM32F107xx microcontrollers.
76
77 * <h3><center>&copy; COPYRIGHT 2011 STMicroelectronics</center></h3>
78 */