Infrared Universal remote DBs unit test & move infrared_signal / infrared_brute_force into lib (#4284)

* make infrared db unit tests

* fix the tests, no assets are in asset folder oh no

* fix formate

* ship ir app along with unit_test pkg

* libify ir signal and bruteforce parts

* small cleanup

* api: removed infrared methods (you can link with the lib if needed), unit_tests, infrared: adjusted to link with ir lib; api: added `__aeabi_f2d`

---------

Co-authored-by: hedger <hedger@users.noreply.github.com>
Co-authored-by: hedger <hedger@nanode.su>
This commit is contained in:
MMX
2025-11-06 19:23:59 +03:00
committed by GitHub
parent 67b906e6ba
commit 6a5ae6cc0d
17 changed files with 150 additions and 18 deletions

View File

@@ -9,7 +9,7 @@ App(
order=40,
sources=["*.c", "!infrared_cli.c"],
resources="resources",
fap_libs=["assets"],
fap_libs=["assets", "infrared"],
fap_icon="icon.png",
fap_category="Infrared",
)
@@ -20,9 +20,5 @@ App(
apptype=FlipperAppType.PLUGIN,
entry_point="cli_ir_ep",
requires=["cli"],
sources=[
"infrared_cli.c",
"infrared_brute_force.c",
"infrared_signal.c",
],
sources=["infrared_cli.c"],
)