2022-03-29 13:01:56 +00:00
|
|
|
/**
|
|
|
|
* @file one_wire_slave.h
|
|
|
|
*
|
|
|
|
* 1-Wire slave library. Currently it can only emulate ID.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <furi_hal_gpio.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct OneWireDevice OneWireDevice;
|
|
|
|
typedef struct OneWireSlave OneWireSlave;
|
|
|
|
typedef void (*OneWireSlaveResultCallback)(void* context);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate onewire slave
|
2023-02-08 05:40:44 +00:00
|
|
|
* @param gpio_pin
|
2022-03-29 13:01:56 +00:00
|
|
|
* @return OneWireSlave*
|
|
|
|
*/
|
2023-02-08 05:40:44 +00:00
|
|
|
OneWireSlave* onewire_slave_alloc(const GpioPin* gpio_pin);
|
2022-03-29 13:01:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Free onewire slave
|
|
|
|
* @param bus
|
|
|
|
*/
|
|
|
|
void onewire_slave_free(OneWireSlave* bus);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start working with the bus
|
|
|
|
* @param bus
|
|
|
|
*/
|
|
|
|
void onewire_slave_start(OneWireSlave* bus);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop working with the bus
|
|
|
|
* @param bus
|
|
|
|
*/
|
|
|
|
void onewire_slave_stop(OneWireSlave* bus);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attach device for emulation
|
|
|
|
* @param bus
|
|
|
|
* @param device
|
|
|
|
*/
|
|
|
|
void onewire_slave_attach(OneWireSlave* bus, OneWireDevice* device);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Detach device from bus
|
|
|
|
* @param bus
|
|
|
|
*/
|
|
|
|
void onewire_slave_detach(OneWireSlave* bus);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a callback to report emulation success
|
|
|
|
* @param bus
|
|
|
|
* @param result_cb
|
|
|
|
* @param context
|
|
|
|
*/
|
|
|
|
void onewire_slave_set_result_callback(
|
|
|
|
OneWireSlave* bus,
|
|
|
|
OneWireSlaveResultCallback result_cb,
|
|
|
|
void* context);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|