[STM32]因为主设备复位而造成的i2c卡死解决方案

发布时间:2022-06-21 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了[STM32]因为主设备复位而造成的i2c卡死解决方案脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

很多时候I2C设备会因为32的复位出现问题,本人也在最近遇到这个问题,这里分享一个解决办法

以下摘自stm32F1的勘误手册:

  1. Disable the I2C PEripheral by clearing the PE bIT in I2Cx_CR1 register.
  2. configure the SCL and SDA I/Os as General Purpose Output Open-Drain, High level (Write 1 to GPIOx_ODR).
  3. Check SCL and SDA High level in GPIOx_IDR.
  4. Configure the SDA I/O as General Purpose Output Open-Drain, Low level (Write 0 to GPIOx_ODR).
  5. Check SDA Low level in GPIOx_IDR.
  6. Configure the SCL I/O as General Purpose Output Open-Drain, Low level (Write 0 to GPIOx_ODR).
  7. Check SCL Low level in GPIOx_IDR.
  8. Configure the SCL I/O as General Purpose Output Open-Drain, High level (Write 1 to GPIOx_ODR).
  9. Check SCL High level in GPIOx_IDR.
  10. Configure the SDA I/O as General Purpose Output Open-Drain , High level (Write 1 to GPIOx_ODR).
  11. Check SDA High level in GPIOx_IDR.
  12. Configure the SCL and SDA I/Os as Alternate function Open-Drain.
  13. Set SWRST bit in I2Cx_CR1 register.
  14. Clear SWRST bit in I2Cx_CR1 register.
  15. Enable the I2C peripheral by setting the PE bit in I2Cx_CR1 register.

但是实际测试下来还是可能会出问题,最后发现得将两个引脚Deinit才比较稳定,另外如果一次不行的话可能得用多次。

脚本宝典总结

以上是脚本宝典为你收集整理的[STM32]因为主设备复位而造成的i2c卡死解决方案全部内容,希望文章能够帮你解决[STM32]因为主设备复位而造成的i2c卡死解决方案所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。