App( appid="subghz", name="SubGHz", apptype=FlipperAppType.APP, targets=["f7"], entry_point="subghz_app", cdefines=["APP_SUBGHZ"], requires=[ "gui", "cli", "dialogs", ], provides=[ "subghz_start", "subghz_load_extended_settings", ], sdk_headers=[ "helpers/subghz_txrx.h", ], icon="A_Sub1ghz_14", stack_size=3 * 1024, order=10, ) App( appid="subghz_start", apptype=FlipperAppType.STARTUP, entry_point="subghz_on_system_start", requires=["subghz"], order=40, ) App( appid="subghz_load_extended_settings", apptype=FlipperAppType.STARTUP, entry_point="subghz_extended_freq", requires=["storage", "subghz"], order=650, )