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>
|
2022-03-29 13:01:56 +00:00
|
|
|
#include "furi_hal_gpio.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();
|
|
|
|
|
|
|
|
void furi_hal_ibutton_emulate_start(
|
|
|
|
uint32_t period,
|
|
|
|
FuriHalIbuttonEmulateCallback callback,
|
|
|
|
void* context);
|
|
|
|
|
|
|
|
void furi_hal_ibutton_emulate_set_next(uint32_t period);
|
|
|
|
|
|
|
|
void furi_hal_ibutton_emulate_stop();
|
|
|
|
|
2022-03-29 13:01:56 +00:00
|
|
|
/**
|
|
|
|
* Sets the pin to normal mode (open collector), and sets it to float
|
|
|
|
*/
|
|
|
|
void furi_hal_ibutton_start_drive();
|
2021-08-08 18:03:25 +00:00
|
|
|
|
2022-03-29 13:01:56 +00:00
|
|
|
/**
|
|
|
|
* Sets the pin to normal mode (open collector), and clears pin EXTI interrupt.
|
|
|
|
* Used in EXTI interrupt context.
|
|
|
|
*/
|
|
|
|
void furi_hal_ibutton_start_drive_in_isr();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the pin to interrupt mode (EXTI interrupt on rise or fall), and sets it to float
|
|
|
|
*/
|
|
|
|
void furi_hal_ibutton_start_interrupt();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the pin to interrupt mode (EXTI interrupt on rise or fall), and clears pin EXTI interrupt.
|
|
|
|
* Used in EXTI interrupt context.
|
|
|
|
*/
|
|
|
|
void furi_hal_ibutton_start_interrupt_in_isr();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the pin to analog mode, and sets it to float
|
|
|
|
*/
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_ibutton_stop();
|
|
|
|
|
2022-03-29 13:01:56 +00:00
|
|
|
/**
|
|
|
|
* Attach interrupt callback to iButton pin
|
|
|
|
* @param cb callback
|
|
|
|
* @param context context
|
|
|
|
*/
|
|
|
|
void furi_hal_ibutton_add_interrupt(GpioExtiCallback cb, void* context);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove interrupt callback from iButton pin
|
|
|
|
*/
|
|
|
|
void furi_hal_ibutton_remove_interrupt();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the pin to low
|
|
|
|
*/
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_ibutton_pin_low();
|
|
|
|
|
2022-03-29 13:01:56 +00:00
|
|
|
/**
|
|
|
|
* Sets the pin to high (float in iButton pin modes)
|
|
|
|
*/
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_ibutton_pin_high();
|
|
|
|
|
2022-03-29 13:01:56 +00:00
|
|
|
/**
|
|
|
|
* Get pin level
|
|
|
|
* @return true if level is high
|
|
|
|
* @return false if level is low
|
|
|
|
*/
|
2021-08-08 18:03:25 +00:00
|
|
|
bool furi_hal_ibutton_pin_get_level();
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2022-03-25 10:33:01 +00:00
|
|
|
#endif
|