/**
******************************************************************************
* @file stm32f4xx_hal_i2c.c
* @author MCD Application Team
* @brief I2C HAL module driver.
* This file provides firmware functions to manage the following
* functionalities of the Inter Integrated Circuit (I2C) peripheral:
* + Initialization and de-initialization functions
* + IO operation functions
* + Peripheral State, Mode and Error functions
*
@verbatim
==============================================================================
##### How to use this driver #####
==============================================================================
[..]
The I2C HAL driver can be used as follows:
(#) Declare a I2C_HandleTypeDef handle structure, for example:
I2C_HandleTypeDef hi2c;
(#)Initialize the I2C low level resources by implementing the @ref HAL_I2C_MspInit() API:
(##) Enable the I2Cx interface clock
(##) I2C pins configuration
(+++) Enable the clock for the I2C GPIOs
(+++) Configure I2C pins as alternate function open-drain
(##) NVIC configuration if you need to use interrupt process
(+++) Configure the I2Cx interrupt priority
(+++) Enable the NVIC I2C IRQ Channel
(##) DMA Configuration if you need to use DMA process
(+++) Declare a DMA_HandleTypeDef handle structure for the transmit or receive stream
(+++) Enable the DMAx interface clock using
(+++) Configure the DMA handle parameters
(+++) Configure the DMA Tx or Rx stream
(+++) Associate the initialized DMA handle to the hi2c DMA Tx or Rx handle
(+++) Configure the priority and enable the NVIC for the transfer complete interrupt on
the DMA Tx or Rx stream
(#) Configure the Communication Speed, Duty cycle, Addressing mode, Own Address1,
Dual Addressing mode, Own Address2, General call and Nostretch mode in the hi2c Init structure.
(#) Initialize the I2C registers by calling the @ref HAL_I2C_Init(), configures also the low level Hardware
(GPIO, CLOCK, NVIC...etc) by calling the customized @ref HAL_I2C_MspInit() API.
(#) To check if target device is ready for communication, use the function @ref HAL_I2C_IsDeviceReady()
(#) For I2C IO and IO MEM operations, three operation modes are available within this driver :
*** Polling mode IO operation ***
=================================
[..]
(+) Transmit in master mode an amount of data in blocking mode using @ref HAL_I2C_Master_Transmit()
(+) Receive in master mode an amount of data in blocking mode using @ref HAL_I2C_Master_Receive()
(+) Transmit in slave mode an amount of data in blocking mode using @ref HAL_I2C_Slave_Transmit()
(+) Receive in slave mode an amount of data in blocking mode using @ref HAL_I2C_Slave_Receive()
*** Polling mode IO MEM operation ***
=====================================
[..]
(+) Write an amount of data in blocking mode to a specific memory address using @ref HAL_I2C_Mem_Write()
(+) Read an amount of data in blocking mode from a specific memory address using @ref HAL_I2C_Mem_Read()
*** Interrupt mode IO operation ***
===================================
[..]
(+) Transmit in master mode an amount of data in non-blocking mode using @ref HAL_I2C_Master_Transmit_IT()
(+) At transmission end of transfer, @ref HAL_I2C_MasterTxCpltCallback() is executed and user can
add his own code by customization of function pointer @ref HAL_I2C_MasterTxCpltCallback()
(+) Receive in master mode an amount of data in non-blocking mode using @ref HAL_I2C_Master_Receive_IT()
(+) At reception end of transfer, @ref HAL_I2C_MasterRxCpltCallback() is executed and user can
add his own code by customization of function pointer @ref HAL_I2C_MasterRxCpltCallback()
(+) Transmit in slave mode an amount of data in non-blocking mode using @ref HAL_I2C_Slave_Transmit_IT()
(+) At transmission end of transfer, @ref HAL_I2C_SlaveTxCpltCallback() is executed and user can
add his own code by customization of function pointer @ref HAL_I2C_SlaveTxCpltCallback()
(+) Receive in slave mode an amount of data in non-blocking mode using @ref HAL_I2C_Slave_Receive_IT()
(+) At reception end of transfer, @ref HAL_I2C_SlaveRxCpltCallback() is executed and user can
add his own code by customization of function pointer @ref HAL_I2C_SlaveRxCpltCallback()
(+) In case of transfer Error, @ref HAL_I2C_ErrorCallback() function is executed and user can
add his own code by customization of function pointer @ref HAL_I2C_ErrorCallback()
(+) Abort a master I2C process communication with Interrupt using @ref HAL_I2C_Master_Abort_IT()
(+) End of abort process, @ref HAL_I2C_AbortCpltCallback() is executed and user can
add his own code by customization of function pointer @ref HAL_I2C_AbortCpltCallback()
*** Interrupt mode or DMA mode IO sequential operation ***
==========================================================
[..]
(@) These interfaces allow to manage a sequential transfer with a repeated start condition
when a direction change during transfer
[..]
(+) A specific option field manage the different steps of a sequential transfer
(+) Option field values are defined through @ref I2C_XferOptions_definition and are listed below:
(++) I2C_FIRST_AND_LAST_FRAME: No sequential usage, functionnal is same as associated interfaces in no sequential mode
(++) I2C_FIRST_FRAME: Sequential usage, this option allow to manage a sequence with start condition, address
and data to transfer without a final stop condition
(++) I2C_FIRST_AND_NEXT_FRAME: Sequential usage (Master only), this option allow to manage a sequence with start condition, address
and data to transfer without a final stop condition, an then permit a call the same master sequential interface
several times (like @ref HAL_I2C_Master_Seq_Transmit_IT() then @ref HAL_I2C_Master_Seq_Transmit_IT()
or @ref HAL_I2C_Master_Seq_Transmit_DMA() then @ref HAL_I2C_Master_Seq_Transmit_DMA())
(++) I2C_NEXT_FRAME: Sequential usage, this option allow to manage a sequence with a restart condition, address
and with new data to transfer if the direction change or manage only the new data to transfer
if no direction change and without a final stop condition in both cases
(++) I2C_LAST_FRAME: Sequential usage, this option allow to manage a sequance with a restart condition, address
and with new data to transfer if the direction change or manage only the new data to transfer
if no direction change and with a final stop condition in both cases
(++) I2C_LAST_FRAME_NO_STOP: Sequential usage (Master only), this option allow to manage a restart condition after several call of the same master sequential
interface several times (link with option I2C_FIRST_AND_NEXT_FRAME).
Usage can, transfer several bytes one by one using HAL_I2C_Master_Seq_Transmit_IT(option I2C_FIRST_AND_NEXT_FRAME then I2C_NEXT_FRAME)
or HAL_I2C_Master_Seq_Receive_IT(option I2C_FIRST_AND_NEXT_FRAME then I2C_NEXT_FRAME)
or HAL_I2C_Master_Seq_Transmit_DMA(option I2C_FIRST_AND_NEXT_FRAME then I2C_NEXT_FRAME)
or HAL_I2C_Master_Seq_Receive_DMA
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
Electric racing.zip (214个子文件)
Electric racing.uvguix.32264 87KB
Electric racing.axf 958KB
stm32f4xx_hal_i2c.c 233KB
stm32f4xx_hal_tim.c 213KB
stm32f4xx_hal_rcc_ex.c 154KB
stm32f4xx_hal_uart.c 111KB
inv_mpu.c 88KB
stm32f4xx_hal_tim_ex.c 66KB
inv_mpu_dmp_motion_driver.c 57KB
stm32f4xx_hal_flash_ex.c 51KB
stm32f4xx_hal_rcc.c 42KB
stm32f4xx_hal_dma.c 40KB
system_stm32f4xx.c 27KB
stm32f4xx_hal_flash.c 24KB
stm32f4xx_hal_pwr_ex.c 23KB
stm32f4xx_hal_pwr.c 20KB
stm32f4xx_hal.c 19KB
stm32f4xx_hal_gpio.c 19KB
stm32f4xx_hal_cortex.c 19KB
tim.c 18KB
stm32f4xx_hal_exti.c 15KB
main.c 11KB
stm32f4xx_hal_dma_ex.c 11KB
usart.c 8KB
stm32f4xx_it.c 7KB
stm32f4xx_hal_flash_ramfunc.c 6KB
stm32f4xx_hal_i2c_ex.c 6KB
mpu6050.c 4KB
gpio.c 4KB
duoji_PID.c 3KB
i2c.c 3KB
stm32f4xx_hal_msp.c 2KB
motor.c 2KB
chaoshengbo.c 1KB
openmv.c 799B
ping.c 528B
LED.c 515B
duoji.c 384B
jiguang.c 208B
duoji_zhuizong_PID.c 0B
inv_mpu_dmp_motion_driver.crf 859KB
stm32f4xx_hal_i2c.crf 857KB
inv_mpu.crf 850KB
stm32f4xx_hal_tim.crf 841KB
main.crf 825KB
stm32f4xx_hal_uart.crf 813KB
stm32f4xx_hal_tim_ex.crf 810KB
mpu6050.crf 810KB
stm32f4xx_hal_rcc.crf 806KB
stm32f4xx_hal_dma_ex.crf 805KB
usart.crf 804KB
openmv.crf 804KB
tim.crf 803KB
stm32f4xx_hal_dma.crf 803KB
stm32f4xx_it.crf 802KB
ping.crf 801KB
stm32f4xx_hal_rcc_ex.crf 800KB
stm32f4xx_hal_flash.crf 799KB
stm32f4xx_hal_flash_ex.crf 799KB
stm32f4xx_hal_gpio.crf 798KB
gpio.crf 798KB
stm32f4xx_hal_exti.crf 798KB
chaoshengbo.crf 797KB
stm32f4xx_hal_pwr.crf 797KB
i2c.crf 797KB
stm32f4xx_hal.crf 797KB
stm32f4xx_hal_msp.crf 796KB
stm32f4xx_hal_cortex.crf 796KB
stm32f4xx_hal_pwr_ex.crf 796KB
duoji_pid.crf 796KB
motor.crf 796KB
system_stm32f4xx.crf 795KB
duoji.crf 795KB
led.crf 795KB
jiguang.crf 795KB
stm32f4xx_hal_flash_ramfunc.crf 795KB
stm32f4xx_hal_i2c_ex.crf 795KB
inv_mpu_dmp_motion_driver.d 4KB
main.d 3KB
stm32f4xx_hal_flash_ramfunc.d 3KB
stm32f4xx_hal_flash_ex.d 3KB
inv_mpu.d 3KB
stm32f4xx_hal_i2c_ex.d 3KB
stm32f4xx_hal_cortex.d 3KB
stm32f4xx_hal_rcc_ex.d 3KB
stm32f4xx_hal_pwr_ex.d 3KB
stm32f4xx_hal_tim_ex.d 3KB
stm32f4xx_hal_dma_ex.d 3KB
stm32f4xx_hal_flash.d 3KB
stm32f4xx_it.d 3KB
stm32f4xx_hal_uart.d 3KB
stm32f4xx_hal_gpio.d 3KB
stm32f4xx_hal_exti.d 3KB
stm32f4xx_hal_msp.d 3KB
stm32f4xx_hal_tim.d 3KB
stm32f4xx_hal_dma.d 3KB
stm32f4xx_hal_pwr.d 3KB
stm32f4xx_hal_rcc.d 3KB
stm32f4xx_hal_i2c.d 3KB
chaoshengbo.d 3KB
共 214 条
- 1
- 2
- 3
资源评论
即安莉
- 粉丝: 2845
- 资源: 12
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于Java的坦克游戏设计与实现
- 车辆、飞机、桥、人、船、储罐、风车检测25-YOLO(v5至v8)、COCO、CreateML数据集合集.rar
- 西门子EPOS效率倍增-伺服驱动功能库详解-简易非循环功能库之EPOS程序段读写.mp4
- windows鼠标美化
- 基于python-CNN深度学习识别10种蔬菜-含5000张以上的图片.zip
- 车辆、标志、人员检测28-YOLO(v5至v11)、COCO数据集合集.rar
- zotero-reference插件-版本号1.3.1.xpi
- 基于javaswing的可视化学生信息管理系统
- 车辆、人检测14-TFRecord数据集合集.rar
- 车辆、人员、标志检测26-YOLO(v5至v11)、COCO、CreateML、Paligemma、TFRecord、VOC数据集合集.rar
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功