mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
b9a766d909
* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
22 lines
849 B
C
22 lines
849 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef struct InfraredBruteForce InfraredBruteForce;
|
|
|
|
InfraredBruteForce* infrared_brute_force_alloc();
|
|
void infrared_brute_force_free(InfraredBruteForce* brute_force);
|
|
void infrared_brute_force_set_db_filename(InfraredBruteForce* brute_force, const char* db_filename);
|
|
bool infrared_brute_force_calculate_messages(InfraredBruteForce* brute_force);
|
|
bool infrared_brute_force_start(
|
|
InfraredBruteForce* brute_force,
|
|
uint32_t index,
|
|
uint32_t* record_count);
|
|
bool infrared_brute_force_is_started(InfraredBruteForce* brute_force);
|
|
void infrared_brute_force_stop(InfraredBruteForce* brute_force);
|
|
bool infrared_brute_force_send_next(InfraredBruteForce* brute_force);
|
|
void infrared_brute_force_add_record(
|
|
InfraredBruteForce* brute_force,
|
|
uint32_t index,
|
|
const char* name);
|