api-hal-i2c.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #include <api-hal-i2c.h>
  2. #include <stm32wbxx_ll_bus.h>
  3. #include <stm32wbxx_ll_i2c.h>
  4. #include <stm32wbxx_ll_rcc.h>
  5. #include <stm32wbxx_ll_gpio.h>
  6. void api_hal_i2c_init() {
  7. LL_I2C_InitTypeDef I2C_InitStruct = {0};
  8. LL_GPIO_InitTypeDef GPIO_InitStruct = {0};
  9. LL_RCC_SetI2CClockSource(LL_RCC_I2C1_CLKSOURCE_PCLK1);
  10. LL_AHB2_GRP1_EnableClock(LL_AHB2_GRP1_PERIPH_GPIOA);
  11. GPIO_InitStruct.Pin = POWER_I2C_SCL_Pin | POWER_I2C_SDA_Pin;
  12. GPIO_InitStruct.Mode = LL_GPIO_MODE_ALTERNATE;
  13. GPIO_InitStruct.Speed = LL_GPIO_SPEED_FREQ_LOW;
  14. GPIO_InitStruct.OutputType = LL_GPIO_OUTPUT_OPENDRAIN;
  15. GPIO_InitStruct.Pull = LL_GPIO_PULL_NO;
  16. GPIO_InitStruct.Alternate = LL_GPIO_AF_4;
  17. LL_GPIO_Init(GPIOA, &GPIO_InitStruct);
  18. LL_APB1_GRP1_EnableClock(LL_APB1_GRP1_PERIPH_I2C1);
  19. I2C_InitStruct.PeripheralMode = LL_I2C_MODE_I2C;
  20. I2C_InitStruct.Timing = POWER_I2C_TIMINGS;
  21. I2C_InitStruct.AnalogFilter = LL_I2C_ANALOGFILTER_ENABLE;
  22. I2C_InitStruct.DigitalFilter = 0;
  23. I2C_InitStruct.OwnAddress1 = 0;
  24. I2C_InitStruct.TypeAcknowledge = LL_I2C_ACK;
  25. I2C_InitStruct.OwnAddrSize = LL_I2C_OWNADDRESS1_7BIT;
  26. LL_I2C_Init(I2C1, &I2C_InitStruct);
  27. LL_I2C_EnableAutoEndMode(I2C1);
  28. LL_I2C_SetOwnAddress2(I2C1, 0, LL_I2C_OWNADDRESS2_NOMASK);
  29. LL_I2C_DisableOwnAddress2(I2C1);
  30. LL_I2C_DisableGeneralCall(I2C1);
  31. LL_I2C_EnableClockStretching(I2C1);
  32. }
  33. void api_hal_i2c_tx(I2C_TypeDef* instance, uint8_t address, const uint8_t* data, uint8_t size) {
  34. LL_I2C_HandleTransfer(
  35. instance,
  36. address,
  37. LL_I2C_ADDRSLAVE_7BIT,
  38. size,
  39. LL_I2C_MODE_AUTOEND,
  40. LL_I2C_GENERATE_START_WRITE);
  41. while(!LL_I2C_IsActiveFlag_STOP(instance)) {
  42. if(LL_I2C_IsActiveFlag_TXIS(instance)) {
  43. LL_I2C_TransmitData8(instance, (*data++));
  44. }
  45. }
  46. LL_I2C_ClearFlag_STOP(instance);
  47. }
  48. void api_hal_i2c_rx(I2C_TypeDef* instance, uint8_t address, uint8_t* data, uint8_t size) {
  49. LL_I2C_HandleTransfer(
  50. instance,
  51. address,
  52. LL_I2C_ADDRSLAVE_7BIT,
  53. size,
  54. LL_I2C_MODE_AUTOEND,
  55. LL_I2C_GENERATE_START_READ);
  56. while(!LL_I2C_IsActiveFlag_STOP(instance)) {
  57. if(LL_I2C_IsActiveFlag_RXNE(instance)) {
  58. *data++ = LL_I2C_ReceiveData8(instance);
  59. }
  60. }
  61. LL_I2C_ClearFlag_STOP(instance);
  62. }
  63. void api_hal_i2c_trx(
  64. I2C_TypeDef* instance,
  65. uint8_t address,
  66. const uint8_t* tx_data,
  67. uint8_t tx_size,
  68. uint8_t* rx_data,
  69. uint8_t rx_size) {
  70. api_hal_i2c_tx(instance, address, tx_data, tx_size);
  71. api_hal_i2c_rx(instance, address, rx_data, rx_size);
  72. }