mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-01 00:39:12 +00:00
14 lines
357 B
C
14 lines
357 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct GpioTest GpioTest;
|
|
typedef void (*GpioTestOkCallback)(InputType type, void* context);
|
|
|
|
GpioTest* gpio_test_alloc();
|
|
|
|
void gpio_test_free(GpioTest* gpio_test);
|
|
|
|
View* gpio_test_get_view(GpioTest* gpio_test);
|
|
|
|
void gpio_test_set_ok_callback(GpioTest* gpio_test, GpioTestOkCallback callback, void* context);
|