91 lines
4.2 KiB
Plaintext
91 lines
4.2 KiB
Plaintext
/**
|
|
@page STM32F072B-Discovery_Demonstration STM32F072B-Discovery demonstration firmware
|
|
|
|
@verbatim
|
|
******************** (C) COPYRIGHT 2016 STMicroelectronics *******************
|
|
* @file Demonstration/readme.txt
|
|
* @author MCD Application Team
|
|
* @brief Description of the STM32F072B-Discovery demonstration firmware
|
|
******************************************************************************
|
|
*
|
|
* <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
******************************************************************************
|
|
@endverbatim
|
|
|
|
@par Demo Description
|
|
|
|
The provided demonstration firmware helps you to discover STM32F072B-DISCOVERY board.
|
|
It use the MEMS motion sensor to blink the four LEDs according to the motion direction,
|
|
the linear touch sensor blink the four LEDs according to the finger position.
|
|
Below you find the sequence to launch the discover demonstration :
|
|
|
|
- Four LEDs blink
|
|
|
|
- The gyroscope MEMS sensor (L3GD20): move the board and observe LEDs blinking
|
|
according to motion direction.
|
|
Right : LED5 is ON.
|
|
Left : LED4 is ON.
|
|
UP : LED3 is ON.
|
|
DOWN : LED6 is ON.
|
|
|
|
- Touch Sensor Linear (TSL) blink the four LEDs according to the finger position
|
|
it can perform in both direction.
|
|
|
|
|
|
Note: - Press user button to swich from sequence to the second one.
|
|
|
|
|
|
@par Directory contents
|
|
|
|
- Demonstrations/Inc/main.c Main program header file
|
|
- Demonstrations/Inc/stm32f0xx_hal_conf.h HAL Configuration file
|
|
- Demonstrations/Inc/stm32f0xx_it.h Interrupt handlers header file
|
|
- Demonstrations/Inc/tsl_conf.h TSC configuration file
|
|
- Demonstrations/Inc/tsl_user.h TSC user configuration and api header file
|
|
- Demonstrations/Src/main.c Main program
|
|
- Demonstrations/Src/stm32f0xx_hal_msp.c HAL MSP module file
|
|
- Demonstrations/Src/stm32f0xx_it.c Interrupt handlers
|
|
- Demonstrations/Src/system_stm32f0xx.c STM32F0xx system source file
|
|
- Demonstrations/Src/tsl_user.c TSC user configuration and api file
|
|
|
|
|
|
@par Hardware and Software environment
|
|
|
|
- This Demonstration has been tested with STMicroelectronics STM32F072B-DISCO board
|
|
can be easily tailored to any other supported device and development board.
|
|
- This Demonstration runs on STM32F072RB devices.
|
|
|
|
@par How to use it ?
|
|
|
|
In order to make the program work, you must do the following :
|
|
- Open your preferred toolchain
|
|
- Rebuild all files and load your image into target memory
|
|
- Run the example
|
|
|
|
|
|
* <h3><center>© COPYRIGHT STMicroelectronics</center></h3>
|
|
*/
|