ibutton init

This commit is contained in:
DrZlo13
2020-11-16 21:21:58 +10:00
parent 714d732745
commit 4eeac6579f
9 changed files with 721 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ void power_task(void* p);
void sd_card_test(void* p);
void application_vibro(void* p);
void app_gpio_test(void* p);
void app_ibutton(void* p);
const FlipperStartupApp FLIPPER_STARTUP[] = {
#ifdef APP_DISPLAY
@@ -122,6 +123,10 @@ const FlipperStartupApp FLIPPER_STARTUP[] = {
.name = "gpio test",
.libs = {1, FURI_LIB{"gui_task"}},
#endif
#ifdef APP_IBUTTON
{.app = app_ibutton, .name = "ibutton", .libs = {1, FURI_LIB{"gui_task"}}},
#endif
};
const FlipperStartupApp FLIPPER_APPS[] = {
@@ -164,4 +169,8 @@ const FlipperStartupApp FLIPPER_APPS[] = {
#ifdef BUILD_GPIO_DEMO
{.app = app_gpio_test, .name = "gpio test", .libs = {1, FURI_LIB{"gui_task"}}},
#endif
#ifdef BUILD_IBUTTON
{.app = app_ibutton, .name = "ibutton", .libs = {1, FURI_LIB{"gui_task"}}},
#endif
};