2023-03-14 14:29:28 +00:00
|
|
|
#include "firmware_api.h"
|
|
|
|
|
|
|
|
#include <flipper_application/api_hashtable/api_hashtable.h>
|
|
|
|
#include <flipper_application/api_hashtable/compilesort.hpp>
|
|
|
|
|
|
|
|
/* Generated table */
|
2023-04-06 02:44:37 +00:00
|
|
|
#include <firmware_api_table.h>
|
2023-03-14 14:29:28 +00:00
|
|
|
|
2023-05-03 03:58:59 +00:00
|
|
|
#include <furi_hal_info.h>
|
|
|
|
|
2023-03-14 14:29:28 +00:00
|
|
|
static_assert(!has_hash_collisions(elf_api_table), "Detected API method hash collision!");
|
|
|
|
|
|
|
|
constexpr HashtableApiInterface elf_api_interface{
|
|
|
|
{
|
|
|
|
.api_version_major = (elf_api_version >> 16),
|
|
|
|
.api_version_minor = (elf_api_version & 0xFFFF),
|
|
|
|
.resolver_callback = &elf_resolve_from_hashtable,
|
|
|
|
},
|
|
|
|
.table_cbegin = elf_api_table.cbegin(),
|
|
|
|
.table_cend = elf_api_table.cend(),
|
|
|
|
};
|
|
|
|
|
|
|
|
const ElfApiInterface* const firmware_api_interface = &elf_api_interface;
|
2023-05-03 03:58:59 +00:00
|
|
|
|
|
|
|
extern "C" void furi_hal_info_get_api_version(uint16_t* major, uint16_t* minor) {
|
|
|
|
*major = elf_api_interface.api_version_major;
|
|
|
|
*minor = elf_api_interface.api_version_minor;
|
|
|
|
}
|