mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-25 06:13:14 +03:00
9e42e00ead
* toolbox, gui: fixes for compressed icon handling * ufbt: fixes for generated vscode project * scripts: increased max dimensions for image converter * icon type changes * linter fixes; api sync * gui: docs fix * toolbox: fixed potential decoder buffer overflow * minor cleanup * fbt: sdk: suppressed deprecation warnings in API table * toolbox: compress: added unit tests vscode: now installs resources for unit_tests unit_tests: now loads subghz region data * toolbox: compress: review fixes, pt 1 * compress: now passes decoder buffer size as constructor argument; auto-resize decoder buffer; crash on failed icon decompression * PVS fixes * pvs fixes, pt2 * doxygen fixes * investigating unit test failures * investigating unit test failures * investigating unit test failures * investigating unit test failures * investigating unit test failures * UnitTests: move all tests into plugins, brakes testing * UnitTests: add plugin API and update plugin entrypoints * UniTests: Test runner that works with plugins * fbt: extra filtering for extapps to include in build * UnitTests: filter tests by name * loader: restored API table for unit_test build config * Add various missing symbols to API table * UnitTest: fail on plugin load error * UnitTests: cleanup plugin api and reporting * unit_tests: composite resolver * UnitTests: remove unused declaration * unit_tests, nfc: moved mock nfc implementation to libnfc * unit_tests: api: removed redundant #define * toolbox: compress: removed size_hint for icons; triggering furi_check on oversized icons * gui: icon, icon_animation: removed size hit APIs * Format Sources. Cleanup code. * loader: refuse to start .fal as app * toolbox: compress: fixed memory corruption in operations with small destination buffer; added unit tests for that case * unit_tests: proper test skipping; better selective test interface * unit_tests: moved 'loading' logging to proper location Co-authored-by: あく <alleteam@gmail.com>
30 lines
1.5 KiB
C
30 lines
1.5 KiB
C
#include <update_util/resources/manifest.h>
|
|
#include <nfc/protocols/slix/slix_i.h>
|
|
#include <nfc/protocols/iso15693_3/iso15693_3_poller_i.h>
|
|
#include <FreeRTOS.h>
|
|
#include <FreeRTOS-Kernel/include/queue.h>
|
|
|
|
#include <rpc/rpc_i.h>
|
|
#include <flipper.pb.h>
|
|
|
|
static constexpr auto unit_tests_api_table = sort(create_array_t<sym_entry>(
|
|
API_METHOD(resource_manifest_reader_alloc, ResourceManifestReader*, (Storage*)),
|
|
API_METHOD(resource_manifest_reader_free, void, (ResourceManifestReader*)),
|
|
API_METHOD(resource_manifest_reader_open, bool, (ResourceManifestReader*, const char* filename)),
|
|
API_METHOD(resource_manifest_reader_next, ResourceManifestEntry*, (ResourceManifestReader*)),
|
|
API_METHOD(resource_manifest_reader_previous, ResourceManifestEntry*, (ResourceManifestReader*)),
|
|
API_METHOD(slix_process_iso15693_3_error, SlixError, (Iso15693_3Error)),
|
|
API_METHOD(iso15693_3_poller_get_data, const Iso15693_3Data*, (Iso15693_3Poller*)),
|
|
API_METHOD(rpc_system_storage_get_error, PB_CommandStatus, (FS_Error)),
|
|
API_METHOD(xQueueSemaphoreTake, BaseType_t, (QueueHandle_t, TickType_t)),
|
|
API_METHOD(vQueueDelete, void, (QueueHandle_t)),
|
|
API_METHOD(
|
|
xQueueGenericCreate,
|
|
QueueHandle_t,
|
|
(const UBaseType_t, const UBaseType_t, const uint8_t)),
|
|
API_METHOD(
|
|
xQueueGenericSend,
|
|
BaseType_t,
|
|
(QueueHandle_t, const void* const, TickType_t, const BaseType_t)),
|
|
API_VARIABLE(PB_Main_msg, PB_Main_msg_t)));
|