1
6
7
8
9
10
11
12
13
14
30
31
/* ... */
#include "hal/i2c_hal.h"
void i2c_hal_master_handle_tx_event(i2c_hal_context_t *hal, i2c_intr_event_t *event)
{
uint32_t intr_status = 0;
i2c_ll_get_intr_mask(hal->dev, &intr_status);
if (intr_status != 0) {
i2c_ll_master_get_event(hal->dev, event);
if ((*event < I2C_INTR_EVENT_END_DET) ||
(*event == I2C_INTR_EVENT_TRANS_DONE)) {
i2c_ll_master_disable_tx_it(hal->dev);
i2c_ll_clear_intr_mask(hal->dev, intr_status);
}{...} else if (*event == I2C_INTR_EVENT_END_DET) {
i2c_ll_clear_intr_mask(hal->dev, intr_status);
}{...}
}{...}
}{ ... }
void i2c_hal_master_handle_rx_event(i2c_hal_context_t *hal, i2c_intr_event_t *event)
{
uint32_t intr_status = 0;
i2c_ll_get_intr_mask(hal->dev, &intr_status);
if (intr_status != 0) {
i2c_ll_master_get_event(hal->dev, event);
if ((*event < I2C_INTR_EVENT_END_DET) ||
(*event == I2C_INTR_EVENT_TRANS_DONE)) {
i2c_ll_master_disable_rx_it(hal->dev);
i2c_ll_clear_intr_mask(hal->dev, intr_status);
}{...} else if (*event == I2C_INTR_EVENT_END_DET) {
i2c_ll_clear_intr_mask(hal->dev, intr_status);
}{...}
}{...}
}{ ... }