2021-08-08 18:03:25 +00:00
|
|
|
#include <furi-hal-irda.h>
|
2021-07-16 16:43:54 +00:00
|
|
|
#include <irda.h>
|
2021-08-05 21:11:35 +00:00
|
|
|
#include <stdint.h>
|
2021-07-16 16:43:54 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send message over IRDA.
|
|
|
|
*
|
|
|
|
* \param[in] message - message to send.
|
|
|
|
* \param[in] times - number of times message should be sent.
|
|
|
|
*/
|
|
|
|
void irda_send(const IrdaMessage* message, int times);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send raw data through infrared port.
|
|
|
|
*
|
|
|
|
* \param[in] timings - array of timings to send.
|
|
|
|
* \param[in] timings_cnt - timings array size.
|
|
|
|
* \param[in] start_from_mark - true if timings starts from mark,
|
|
|
|
* otherwise from space
|
|
|
|
*/
|
|
|
|
void irda_send_raw(const uint32_t timings[], uint32_t timings_cnt, bool start_from_mark);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send raw data through infrared port, with additional settings.
|
|
|
|
*
|
|
|
|
* \param[in] timings - array of timings to send.
|
|
|
|
* \param[in] timings_cnt - timings array size.
|
|
|
|
* \param[in] start_from_mark - true if timings starts from mark,
|
|
|
|
* otherwise from space
|
|
|
|
* \param[in] duty_cycle - duty cycle to generate on PWM
|
|
|
|
* \param[in] frequency - frequency to generate on PWM
|
|
|
|
*/
|
2021-08-05 21:11:35 +00:00
|
|
|
void irda_send_raw_ext(const uint32_t timings[], uint32_t timings_cnt, bool start_from_mark, uint32_t frequency, float duty_cycle);
|
2021-07-16 16:43:54 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|