mirror of
https://github.com/STMicroelectronics/STM32CubeF0.git
synced 2025-05-05 19:29:46 +08:00
/** @page I2C_OneBoard_Communication_DMAAndIT I2C (Master DMA Mode) @verbatim ******************** (C) COPYRIGHT 2016 STMicroelectronics ******************* * @file Examples_LL/I2C/I2C_OneBoard_Communication_DMAAndIT/readme.txt * @author MCD Application Team * @brief Description of the I2C_OneBoard_Communication_DMAAndIT I2C example (Master DMA Mode). ****************************************************************************** * @attention * * <h2><center>© Copyright (c) 2016 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ****************************************************************************** @endverbatim @par Example Description How to transmit data bytes from an I2C master device using DMA mode to an I2C slave device using interrupt mode. The peripheral is initialized with LL unitary service functions to optimize for performance and size. This example guides you through the different configuration steps by mean of LL API to configure GPIO, DMA and I2C peripherals using only one STM32F072RB-Nucleo RevC. I2C1 Peripheral is configured in Slave mode with EXTI (Clock 400Khz, Own address 7-bit enabled). I2C2 Peripheral is configured in Master mode with DMA (Clock 400Khz). GPIO associated to User push-button is linked with EXTI. LED2 blinks quickly to wait for user-button press. Example execution: Press the User push-button to initiate a write request by Master through Handle_I2C_Master() routine. This action will generate an I2C start condition with the Slave address and a write bit condition. When address Slave match code is received on I2C1, an ADDR interrupt occurs. I2C1 IRQ Handler routine is then checking Address Match Code and direction Write. This will allow Slave to enter in receiver mode and then acknowledge Master to send the bytes through DMA. When acknowledge is received on I2C2, DMA transfer the data from flash memory buffer to I2C2 TXDR register. This will allow Master to transmit a byte to the Slave. Each time a byte is received on I2C1 (Slave), an RXNE interrupt occurs until a STOP condition. And so each time the Slave acknowledge the byte received, DMA transfer the next data from flash memory buffer to I2C2 TXDR register until Transfer completed. Master auto-generate a Stop condition when DMA transfer is achieved. The STOP condition generate a STOP interrupt and initiate the end of reception on Slave side. I2C1 IRQ handler and Handle_I2C_Master() routine are then clearing the STOP flag in both side. LED2 is On if data are well received. In case of errors, LED2 is blinking. @par Directory contents - I2C/I2C_OneBoard_Communication_DMAAndIT/Inc/stm32f0xx_it.h Interrupt handlers header file - I2C/I2C_OneBoard_Communication_DMAAndIT/Inc/main.h Header for main.c module - I2C/I2C_OneBoard_Communication_DMAAndIT/Inc/stm32_assert.h Template file to include assert_failed function - I2C/I2C_OneBoard_Communication_DMAAndIT/Src/stm32f0xx_it.c Interrupt handlers - I2C/I2C_OneBoard_Communication_DMAAndIT/Src/main.c Main program - I2C/I2C_OneBoard_Communication_DMAAndIT/Src/system_stm32f0xx.c STM32F0xx system source file @par Hardware and Software environment - This example runs on STM32F072xB devices. - This example has been tested with STM32F072RB-Nucleo RevC board and can be easily tailored to any other supported device and development board. - STM32F072RB-Nucleo RevC Set-up - Connect GPIOs connected to I2C1 SCL/SDA (PB.6 and PB.7) to respectively SCL and SDA pins of I2C2 (PB.13 and PB.14). - I2C1_SCL PB.6 (CN10, pin 17) : connected to I2C2_SCL PB.13 (CN10, pin 30) - I2C1_SDA PB.7 (CN7, pin 21) : connected to I2C2_SDA PB.14 (CN10, pin 28) - Launch the program. Press User push-button to initiate a write request by Master then Slave receive bytes. @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> */