2021-08-01 22:11:18 +00:00
|
|
|
#include "decoder-gpio-out.h"
|
|
|
|
#include <furi.h>
|
2021-08-08 18:03:25 +00:00
|
|
|
#include <furi-hal.h>
|
2021-08-01 22:11:18 +00:00
|
|
|
|
|
|
|
void DecoderGpioOut::process_front(bool polarity, uint32_t time) {
|
|
|
|
hal_gpio_write(&gpio_ext_pa7, polarity);
|
|
|
|
}
|
|
|
|
|
|
|
|
DecoderGpioOut::DecoderGpioOut() {
|
|
|
|
hal_gpio_init_simple(&gpio_ext_pa7, GpioModeOutputPushPull);
|
|
|
|
}
|
|
|
|
|
|
|
|
DecoderGpioOut::~DecoderGpioOut() {
|
|
|
|
hal_gpio_init_simple(&gpio_ext_pa7, GpioModeAnalog);
|
|
|
|
}
|