4d6b170769
* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
16 lines
405 B
C++
16 lines
405 B
C++
#include "decoder_gpio_out.h"
|
|
#include <furi.h>
|
|
#include <furi_hal.h>
|
|
|
|
void DecoderGpioOut::process_front(bool polarity, uint32_t /* time */) {
|
|
furi_hal_gpio_write(&gpio_ext_pa7, polarity);
|
|
}
|
|
|
|
DecoderGpioOut::DecoderGpioOut() {
|
|
furi_hal_gpio_init_simple(&gpio_ext_pa7, GpioModeOutputPushPull);
|
|
}
|
|
|
|
DecoderGpioOut::~DecoderGpioOut() {
|
|
furi_hal_gpio_init_simple(&gpio_ext_pa7, GpioModeAnalog);
|
|
}
|