mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2025-10-10 15:12:41 +02:00
* Core: event_flag, removing duplicate code * event_loop: add support furi_event_flags * Examples: add missing free in event loop examples * Furi: fix event flag * Sync api symbols * Unit_test: evet_loop_event_flags * Fix multiple waiting list elements handling * Unit_test: add event_loop_event_flag test * FURI: event_loop add restrictions * Fix multiple waiting lists items for good * Improve FuriEventLoop unit tests * Abolish callback return value * Remove return value from callback signature * Use bool level value instead of int32_t * Add unit tests for FuriStreamBuffer * Add unit tests for FuriSemaphore * Speed up test execution * Improve docs * Add a stub for furi os-level primitives * Add more checks for edge cases * Allow event loop notification from ISR * Bump api version Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com> Co-authored-by: Georgii Surkov <georgii.surkov@outlook.com> Co-authored-by: Georgii Surkov <37121527+gsurkov@users.noreply.github.com>
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
App(
|
|
appid="example_event_loop_event_flags",
|
|
name="Example: Event Loop Event Flags",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
sources=["example_event_loop_event_flags.c"],
|
|
entry_point="example_event_loop_event_flags_app",
|
|
fap_category="Examples",
|
|
)
|
|
|
|
App(
|
|
appid="example_event_loop_timer",
|
|
name="Example: Event Loop Timer",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
sources=["example_event_loop_timer.c"],
|
|
entry_point="example_event_loop_timer_app",
|
|
fap_category="Examples",
|
|
)
|
|
|
|
App(
|
|
appid="example_event_loop_mutex",
|
|
name="Example: Event Loop Mutex",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
sources=["example_event_loop_mutex.c"],
|
|
entry_point="example_event_loop_mutex_app",
|
|
fap_category="Examples",
|
|
)
|
|
|
|
App(
|
|
appid="example_event_loop_stream_buffer",
|
|
name="Example: Event Loop Stream Buffer",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
sources=["example_event_loop_stream_buffer.c"],
|
|
entry_point="example_event_loop_stream_buffer_app",
|
|
fap_category="Examples",
|
|
)
|
|
|
|
App(
|
|
appid="example_event_loop_multi",
|
|
name="Example: Event Loop Multi",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
sources=["example_event_loop_multi.c"],
|
|
entry_point="example_event_loop_multi_app",
|
|
requires=["gui"],
|
|
fap_category="Examples",
|
|
)
|