2021-10-03 10:36:05 +00:00
|
|
|
/**
|
2022-01-05 16:10:18 +00:00
|
|
|
* @file furi_hal_ibutton.h
|
2021-10-03 10:36:05 +00:00
|
|
|
* iButton HAL API
|
|
|
|
*/
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
#pragma once
|
2021-10-03 10:36:05 +00:00
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
#include <stdbool.h>
|
2022-03-25 10:33:01 +00:00
|
|
|
#include <stdint.h>
|
2021-08-08 18:03:25 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2022-03-25 10:33:01 +00:00
|
|
|
typedef void (*FuriHalIbuttonEmulateCallback)(void* context);
|
|
|
|
|
|
|
|
/** Initialize */
|
|
|
|
void furi_hal_ibutton_init();
|
|
|
|
|
2023-02-08 05:40:44 +00:00
|
|
|
/**
|
|
|
|
* Start emulation timer
|
|
|
|
* @param period timer period
|
|
|
|
* @param callback timer callback
|
|
|
|
* @param context callback context
|
|
|
|
*/
|
2022-03-25 10:33:01 +00:00
|
|
|
void furi_hal_ibutton_emulate_start(
|
|
|
|
uint32_t period,
|
|
|
|
FuriHalIbuttonEmulateCallback callback,
|
|
|
|
void* context);
|
|
|
|
|
2022-03-29 13:01:56 +00:00
|
|
|
/**
|
2023-02-08 05:40:44 +00:00
|
|
|
* Update emulation timer period
|
|
|
|
* @param period new timer period
|
2022-03-29 13:01:56 +00:00
|
|
|
*/
|
2023-02-08 05:40:44 +00:00
|
|
|
void furi_hal_ibutton_emulate_set_next(uint32_t period);
|
2022-03-29 13:01:56 +00:00
|
|
|
|
|
|
|
/**
|
2023-02-08 05:40:44 +00:00
|
|
|
* Stop emulation timer
|
2022-03-29 13:01:56 +00:00
|
|
|
*/
|
2023-02-08 05:40:44 +00:00
|
|
|
void furi_hal_ibutton_emulate_stop();
|
2022-03-29 13:01:56 +00:00
|
|
|
|
|
|
|
/**
|
2023-02-08 05:40:44 +00:00
|
|
|
* Set the pin to normal mode (open collector), and sets it to float
|
2022-03-29 13:01:56 +00:00
|
|
|
*/
|
2023-02-08 05:40:44 +00:00
|
|
|
void furi_hal_ibutton_pin_configure();
|
2022-03-29 13:01:56 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the pin to analog mode, and sets it to float
|
|
|
|
*/
|
2023-02-08 05:40:44 +00:00
|
|
|
void furi_hal_ibutton_pin_reset();
|
2021-08-08 18:03:25 +00:00
|
|
|
|
2022-03-29 13:01:56 +00:00
|
|
|
/**
|
2023-02-08 05:40:44 +00:00
|
|
|
* iButton write pin
|
|
|
|
* @param state true / false
|
2022-03-29 13:01:56 +00:00
|
|
|
*/
|
2023-02-08 05:40:44 +00:00
|
|
|
void furi_hal_ibutton_pin_write(const bool state);
|
2021-08-08 18:03:25 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2022-03-25 10:33:01 +00:00
|
|
|
#endif
|