unleashed-firmware/applications/external/flipper_i2ctools/i2csender.h

22 lines
348 B
C
Raw Normal View History

2022-10-28 15:46:40 +00:00
#pragma once
#include <furi.h>
#include <furi_hal.h>
#include "i2cscanner.h"
typedef struct {
uint8_t address_idx;
uint8_t value;
uint8_t recv[2];
bool must_send;
bool sended;
bool error;
i2cScanner* scanner;
} i2cSender;
void i2c_send();
i2cSender* i2c_sender_alloc();
void i2c_sender_free(i2cSender* i2c_sender);