* First part of multitarget porting * Delete firmware/targets/f7/Inc directory * Delete firmware/targets/f7/Src directory * gpio: cli fixes; about: using version from HAL * sdk: path fixes * gui: include fixes * applications: more include fixes * gpio: ported to new apis * hal: introduced furi_hal_target_hw.h; libs: added one_wire * hal: f18 target * github: also build f18 by default * typo fix * fbt: removed extra checks on app list * api: explicitly bundling select mlib headers with sdk * hal: f18: changed INPUT_DEBOUNCE_TICKS to match f7 * cleaned up commented out code * docs: added info on hw targets * docs: targets: formatting fixes * f18: fixed link error * f18: fixed API version to match f7 * docs: hardware: minor wording fixes * faploader: added fw target check * docs: typo fixes * github: not building komi target by default * fbt: support for `targets` field for built-in apps * github: reworked build flow to exclude app_set; fbt: removed komi-specific appset; added additional target buildset check * github: fixed build; nfc: fixed pvs warnings * attempt to fix target id * f7, f18: removed certain HAL function from public API * apps: debug: enabled bt_debug_app for f18 * Targets: backport input pins configuration routine from F7 to F18 Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/**
 | 
						|
 * @file application_manifest.h
 | 
						|
 * Flipper application manifest
 | 
						|
 */
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include <stdbool.h>
 | 
						|
#include "elf/elf_api_interface.h"
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#define FAP_MANIFEST_MAGIC 0x52474448
 | 
						|
#define FAP_MANIFEST_SUPPORTED_VERSION 1
 | 
						|
 | 
						|
#define FAP_MANIFEST_MAX_APP_NAME_LENGTH 32
 | 
						|
#define FAP_MANIFEST_MAX_ICON_SIZE 32 // TODO: reduce size?
 | 
						|
 | 
						|
#pragma pack(push, 1)
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    uint32_t manifest_magic;
 | 
						|
    uint32_t manifest_version;
 | 
						|
    union {
 | 
						|
        struct {
 | 
						|
            uint16_t minor;
 | 
						|
            uint16_t major;
 | 
						|
        };
 | 
						|
        uint32_t version;
 | 
						|
    } api_version;
 | 
						|
    uint16_t hardware_target_id;
 | 
						|
} FlipperApplicationManifestBase;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    FlipperApplicationManifestBase base;
 | 
						|
    uint16_t stack_size;
 | 
						|
    uint32_t app_version;
 | 
						|
    char name[FAP_MANIFEST_MAX_APP_NAME_LENGTH];
 | 
						|
    char has_icon;
 | 
						|
    char icon[FAP_MANIFEST_MAX_ICON_SIZE];
 | 
						|
} FlipperApplicationManifestV1;
 | 
						|
 | 
						|
typedef FlipperApplicationManifestV1 FlipperApplicationManifest;
 | 
						|
 | 
						|
#pragma pack(pop)
 | 
						|
 | 
						|
/**
 | 
						|
 * @brief Check if manifest is valid
 | 
						|
 * 
 | 
						|
 * @param manifest 
 | 
						|
 * @return bool 
 | 
						|
 */
 | 
						|
bool flipper_application_manifest_is_valid(const FlipperApplicationManifest* manifest);
 | 
						|
 | 
						|
/**
 | 
						|
 * @brief Check if manifest is compatible with current ELF API interface
 | 
						|
 * 
 | 
						|
 * @param manifest 
 | 
						|
 * @param api_interface 
 | 
						|
 * @return bool 
 | 
						|
 */
 | 
						|
bool flipper_application_manifest_is_compatible(
 | 
						|
    const FlipperApplicationManifest* manifest,
 | 
						|
    const ElfApiInterface* api_interface);
 | 
						|
 | 
						|
/**
 | 
						|
 * @brief Check if application is compatible with current hardware
 | 
						|
 * 
 | 
						|
 * @param manifest
 | 
						|
 * @return bool 
 | 
						|
 */
 | 
						|
bool flipper_application_manifest_is_target_compatible(const FlipperApplicationManifest* manifest);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |