add workaround app

This commit is contained in:
aanper
2020-10-13 13:39:59 +03:00
parent 942bbfaefe
commit f696673700
3 changed files with 37 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ void input_task(void* p);
void menu_task(void* p);
void coreglitch_demo_0(void* p);
void cc1101_workaround(void* p);
void u8g2_qrcode(void* p);
void fatfs_list(void* p);
@@ -70,4 +71,8 @@ const FlipperStartupApp FLIPPER_STARTUP[] = {
{.app = u8g2_example, .name = "u8g2_example", .libs = {1, FURI_LIB{"display_u8g2"}}},
#endif
#ifdef APP_CC1101
{.app = cc1101_workaround, .name = "cc1101_workaround", .libs = {2, FURI_LIB{"display_u8g2", "input_task"}}},
#endif
};