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