2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal_i2c.h>
|
2022-03-30 15:23:40 +00:00
|
|
|
#include <furi_hal_delay.h>
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal_version.h>
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
#include <furi_hal_power.h>
|
2021-07-22 08:44:15 +00:00
|
|
|
|
2021-05-18 09:23:14 +00:00
|
|
|
#include <stm32wbxx_ll_i2c.h>
|
|
|
|
#include <stm32wbxx_ll_gpio.h>
|
|
|
|
#include <stm32wbxx_ll_cortex.h>
|
|
|
|
#include <furi.h>
|
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
#define TAG "FuriHalI2C"
|
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
void furi_hal_i2c_init_early() {
|
2021-11-28 18:28:19 +00:00
|
|
|
furi_hal_i2c_bus_power.callback(&furi_hal_i2c_bus_power, FuriHalI2cBusEventInit);
|
2022-04-13 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_i2c_deinit_early() {
|
|
|
|
furi_hal_i2c_bus_power.callback(&furi_hal_i2c_bus_power, FuriHalI2cBusEventDeinit);
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_i2c_init() {
|
2021-11-28 18:28:19 +00:00
|
|
|
furi_hal_i2c_bus_external.callback(&furi_hal_i2c_bus_external, FuriHalI2cBusEventInit);
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "Init OK");
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-11-28 18:28:19 +00:00
|
|
|
void furi_hal_i2c_acquire(FuriHalI2cBusHandle* handle) {
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
furi_hal_power_insomnia_enter();
|
2021-11-28 18:28:19 +00:00
|
|
|
// Lock bus access
|
|
|
|
handle->bus->callback(handle->bus, FuriHalI2cBusEventLock);
|
|
|
|
// Ensuree that no active handle set
|
|
|
|
furi_check(handle->bus->current_handle == NULL);
|
|
|
|
// Set current handle
|
|
|
|
handle->bus->current_handle = handle;
|
|
|
|
// Activate bus
|
|
|
|
handle->bus->callback(handle->bus, FuriHalI2cBusEventActivate);
|
|
|
|
// Activate handle
|
|
|
|
handle->callback(handle, FuriHalI2cBusHandleEventActivate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_i2c_release(FuriHalI2cBusHandle* handle) {
|
|
|
|
// Ensure that current handle is our handle
|
|
|
|
furi_check(handle->bus->current_handle == handle);
|
|
|
|
// Deactivate handle
|
|
|
|
handle->callback(handle, FuriHalI2cBusHandleEventDeactivate);
|
|
|
|
// Deactivate bus
|
|
|
|
handle->bus->callback(handle->bus, FuriHalI2cBusEventDeactivate);
|
|
|
|
// Reset current handle
|
|
|
|
handle->bus->current_handle = NULL;
|
|
|
|
// Unlock bus
|
|
|
|
handle->bus->callback(handle->bus, FuriHalI2cBusEventUnlock);
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
furi_hal_power_insomnia_exit();
|
2021-11-28 18:28:19 +00:00
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
bool furi_hal_i2c_tx(
|
2021-11-28 18:28:19 +00:00
|
|
|
FuriHalI2cBusHandle* handle,
|
2021-05-18 09:23:14 +00:00
|
|
|
uint8_t address,
|
|
|
|
const uint8_t* data,
|
|
|
|
uint8_t size,
|
|
|
|
uint32_t timeout) {
|
2021-11-28 18:28:19 +00:00
|
|
|
furi_check(handle->bus->current_handle == handle);
|
2021-12-05 11:47:02 +00:00
|
|
|
furi_assert(timeout > 0);
|
|
|
|
|
2021-05-18 09:23:14 +00:00
|
|
|
bool ret = true;
|
2022-03-30 15:23:40 +00:00
|
|
|
uint32_t timeout_tick = furi_hal_get_tick() + timeout;
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2021-12-05 11:47:02 +00:00
|
|
|
do {
|
|
|
|
while(LL_I2C_IsActiveFlag_BUSY(handle->bus->i2c)) {
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2021-12-05 11:47:02 +00:00
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 11:47:02 +00:00
|
|
|
if(!ret) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_I2C_HandleTransfer(
|
|
|
|
handle->bus->i2c,
|
|
|
|
address,
|
|
|
|
LL_I2C_ADDRSLAVE_7BIT,
|
|
|
|
size,
|
|
|
|
LL_I2C_MODE_AUTOEND,
|
|
|
|
LL_I2C_GENERATE_START_WRITE);
|
|
|
|
|
|
|
|
while(!LL_I2C_IsActiveFlag_STOP(handle->bus->i2c) || size > 0) {
|
|
|
|
if(LL_I2C_IsActiveFlag_TXIS(handle->bus->i2c)) {
|
|
|
|
LL_I2C_TransmitData8(handle->bus->i2c, (*data));
|
|
|
|
data++;
|
|
|
|
size--;
|
|
|
|
}
|
|
|
|
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2021-05-18 09:23:14 +00:00
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-05 11:47:02 +00:00
|
|
|
LL_I2C_ClearFlag_STOP(handle->bus->i2c);
|
|
|
|
} while(0);
|
2021-05-18 09:23:14 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
bool furi_hal_i2c_rx(
|
2021-11-28 18:28:19 +00:00
|
|
|
FuriHalI2cBusHandle* handle,
|
2021-05-18 09:23:14 +00:00
|
|
|
uint8_t address,
|
|
|
|
uint8_t* data,
|
|
|
|
uint8_t size,
|
|
|
|
uint32_t timeout) {
|
2021-11-28 18:28:19 +00:00
|
|
|
furi_check(handle->bus->current_handle == handle);
|
2021-12-05 11:47:02 +00:00
|
|
|
furi_assert(timeout > 0);
|
|
|
|
|
2021-05-18 09:23:14 +00:00
|
|
|
bool ret = true;
|
2022-03-30 15:23:40 +00:00
|
|
|
uint32_t timeout_tick = furi_hal_get_tick() + timeout;
|
2021-12-05 11:47:02 +00:00
|
|
|
|
|
|
|
do {
|
|
|
|
while(LL_I2C_IsActiveFlag_BUSY(handle->bus->i2c)) {
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2021-12-05 11:47:02 +00:00
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2021-12-05 11:47:02 +00:00
|
|
|
if(!ret) {
|
|
|
|
break;
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 11:47:02 +00:00
|
|
|
LL_I2C_HandleTransfer(
|
|
|
|
handle->bus->i2c,
|
|
|
|
address,
|
|
|
|
LL_I2C_ADDRSLAVE_7BIT,
|
|
|
|
size,
|
|
|
|
LL_I2C_MODE_AUTOEND,
|
|
|
|
LL_I2C_GENERATE_START_READ);
|
|
|
|
|
|
|
|
while(!LL_I2C_IsActiveFlag_STOP(handle->bus->i2c) || size > 0) {
|
|
|
|
if(LL_I2C_IsActiveFlag_RXNE(handle->bus->i2c)) {
|
|
|
|
*data = LL_I2C_ReceiveData8(handle->bus->i2c);
|
|
|
|
data++;
|
|
|
|
size--;
|
|
|
|
}
|
|
|
|
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2021-05-18 09:23:14 +00:00
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-05 11:47:02 +00:00
|
|
|
LL_I2C_ClearFlag_STOP(handle->bus->i2c);
|
|
|
|
} while(0);
|
2021-05-18 09:23:14 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
bool furi_hal_i2c_trx(
|
2021-11-28 18:28:19 +00:00
|
|
|
FuriHalI2cBusHandle* handle,
|
2021-05-18 09:23:14 +00:00
|
|
|
uint8_t address,
|
|
|
|
const uint8_t* tx_data,
|
|
|
|
uint8_t tx_size,
|
|
|
|
uint8_t* rx_data,
|
|
|
|
uint8_t rx_size,
|
|
|
|
uint32_t timeout) {
|
2021-11-28 18:28:19 +00:00
|
|
|
if(furi_hal_i2c_tx(handle, address, tx_data, tx_size, timeout) &&
|
|
|
|
furi_hal_i2c_rx(handle, address, rx_data, rx_size, timeout)) {
|
2021-05-18 09:23:14 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-01-12 15:29:28 +00:00
|
|
|
|
|
|
|
bool furi_hal_i2c_is_device_ready(FuriHalI2cBusHandle* handle, uint8_t i2c_addr, uint32_t timeout) {
|
|
|
|
furi_check(handle);
|
|
|
|
|
|
|
|
furi_check(handle->bus->current_handle == handle);
|
|
|
|
furi_assert(timeout > 0);
|
|
|
|
|
|
|
|
bool ret = true;
|
2022-03-30 15:23:40 +00:00
|
|
|
uint32_t timeout_tick = furi_hal_get_tick() + timeout;
|
2022-01-12 15:29:28 +00:00
|
|
|
|
|
|
|
do {
|
|
|
|
while(LL_I2C_IsActiveFlag_BUSY(handle->bus->i2c)) {
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2022-01-12 15:29:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handle->bus->i2c->CR2 =
|
|
|
|
((((uint32_t)(i2c_addr) & (I2C_CR2_SADD)) | (I2C_CR2_START) | (I2C_CR2_AUTOEND)) &
|
|
|
|
(~I2C_CR2_RD_WRN));
|
|
|
|
|
|
|
|
while((!LL_I2C_IsActiveFlag_NACK(handle->bus->i2c)) &&
|
|
|
|
(!LL_I2C_IsActiveFlag_STOP(handle->bus->i2c))) {
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2022-01-12 15:29:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(LL_I2C_IsActiveFlag_NACK(handle->bus->i2c)) {
|
|
|
|
while(!LL_I2C_IsActiveFlag_STOP(handle->bus->i2c)) {
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2022-01-12 15:29:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_I2C_ClearFlag_NACK(handle->bus->i2c);
|
|
|
|
|
|
|
|
// Clear STOP Flag generated by autoend
|
|
|
|
LL_I2C_ClearFlag_STOP(handle->bus->i2c);
|
|
|
|
|
|
|
|
// Generate actual STOP
|
|
|
|
LL_I2C_GenerateStopCondition(handle->bus->i2c);
|
|
|
|
|
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(!LL_I2C_IsActiveFlag_STOP(handle->bus->i2c)) {
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2022-01-12 15:29:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_I2C_ClearFlag_STOP(handle->bus->i2c);
|
|
|
|
} while(0);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_i2c_read_reg_8(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t reg_addr,
|
|
|
|
uint8_t* data,
|
|
|
|
uint32_t timeout) {
|
|
|
|
furi_check(handle);
|
|
|
|
|
|
|
|
return furi_hal_i2c_trx(handle, i2c_addr, ®_addr, 1, data, 1, timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_i2c_read_reg_16(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t reg_addr,
|
|
|
|
uint16_t* data,
|
|
|
|
uint32_t timeout) {
|
|
|
|
furi_check(handle);
|
|
|
|
|
|
|
|
uint8_t reg_data[2];
|
|
|
|
bool ret = furi_hal_i2c_trx(handle, i2c_addr, ®_addr, 1, reg_data, 2, timeout);
|
|
|
|
*data = (reg_data[0] << 8) | (reg_data[1]);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_i2c_read_mem(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t mem_addr,
|
|
|
|
uint8_t* data,
|
|
|
|
uint8_t len,
|
|
|
|
uint32_t timeout) {
|
|
|
|
furi_check(handle);
|
|
|
|
|
|
|
|
return furi_hal_i2c_trx(handle, i2c_addr, &mem_addr, 1, data, len, timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_i2c_write_reg_8(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t reg_addr,
|
|
|
|
uint8_t data,
|
|
|
|
uint32_t timeout) {
|
|
|
|
furi_check(handle);
|
|
|
|
|
|
|
|
uint8_t tx_data[2];
|
|
|
|
tx_data[0] = reg_addr;
|
|
|
|
tx_data[1] = data;
|
|
|
|
|
|
|
|
return furi_hal_i2c_tx(handle, i2c_addr, (const uint8_t*)&tx_data, 2, timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_i2c_write_reg_16(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t reg_addr,
|
|
|
|
uint16_t data,
|
|
|
|
uint32_t timeout) {
|
|
|
|
furi_check(handle);
|
|
|
|
|
|
|
|
uint8_t tx_data[3];
|
|
|
|
tx_data[0] = reg_addr;
|
|
|
|
tx_data[1] = (data >> 8) & 0xFF;
|
|
|
|
tx_data[2] = data & 0xFF;
|
|
|
|
|
|
|
|
return furi_hal_i2c_tx(handle, i2c_addr, (const uint8_t*)&tx_data, 3, timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_i2c_write_mem(
|
|
|
|
FuriHalI2cBusHandle* handle,
|
|
|
|
uint8_t i2c_addr,
|
|
|
|
uint8_t mem_addr,
|
|
|
|
uint8_t* data,
|
|
|
|
uint8_t len,
|
|
|
|
uint32_t timeout) {
|
|
|
|
furi_check(handle);
|
|
|
|
|
|
|
|
furi_check(handle->bus->current_handle == handle);
|
|
|
|
furi_assert(timeout > 0);
|
|
|
|
|
|
|
|
bool ret = true;
|
|
|
|
uint8_t size = len + 1;
|
2022-03-30 15:23:40 +00:00
|
|
|
uint32_t timeout_tick = furi_hal_get_tick() + timeout;
|
2022-01-12 15:29:28 +00:00
|
|
|
|
|
|
|
do {
|
|
|
|
while(LL_I2C_IsActiveFlag_BUSY(handle->bus->i2c)) {
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2022-01-12 15:29:28 +00:00
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!ret) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_I2C_HandleTransfer(
|
|
|
|
handle->bus->i2c,
|
|
|
|
i2c_addr,
|
|
|
|
LL_I2C_ADDRSLAVE_7BIT,
|
|
|
|
size,
|
|
|
|
LL_I2C_MODE_AUTOEND,
|
|
|
|
LL_I2C_GENERATE_START_WRITE);
|
|
|
|
|
|
|
|
while(!LL_I2C_IsActiveFlag_STOP(handle->bus->i2c) || size > 0) {
|
|
|
|
if(LL_I2C_IsActiveFlag_TXIS(handle->bus->i2c)) {
|
|
|
|
if(size == len + 1) {
|
|
|
|
LL_I2C_TransmitData8(handle->bus->i2c, mem_addr);
|
|
|
|
} else {
|
|
|
|
LL_I2C_TransmitData8(handle->bus->i2c, (*data));
|
|
|
|
data++;
|
|
|
|
}
|
|
|
|
size--;
|
|
|
|
}
|
|
|
|
|
2022-03-30 15:23:40 +00:00
|
|
|
if(furi_hal_get_tick() >= timeout_tick) {
|
2022-01-12 15:29:28 +00:00
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_I2C_ClearFlag_STOP(handle->bus->i2c);
|
|
|
|
} while(0);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|