mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-04 02:09:12 +00:00
b90e2ca342
* SubGhz: add timeout to subghz_hal_async_tx_test_run * Removed full API from unit_test build config --------- Co-authored-by: hedger <hedger@nanode.su> Co-authored-by: hedger <hedger@users.noreply.github.com>
19 lines
417 B
Text
19 lines
417 B
Text
App(
|
|
appid="unit_tests",
|
|
apptype=FlipperAppType.STARTUP,
|
|
entry_point="unit_tests_on_system_start",
|
|
cdefines=["APP_UNIT_TESTS"],
|
|
requires=["system_settings"],
|
|
provides=["delay_test"],
|
|
order=100,
|
|
)
|
|
|
|
App(
|
|
appid="delay_test",
|
|
name="Delay Test",
|
|
apptype=FlipperAppType.SYSTEM,
|
|
entry_point="delay_test_app",
|
|
stack_size=1 * 1024,
|
|
requires=["unit_tests"],
|
|
order=110,
|
|
)
|