* fbt: reworking targets & assets handling WIP * fbt: dist fixes * fbt: moved SD card resources to owning apps * unit_tests: moved resources to app folder * github: updated unit_tests paths * github: packaging fixes * unit_tests: fixes * fbt: assets: internal cleanup * fbt: reworked assets handling * github: unit_tests: reintroducing fixes * minor cleanup * fbt: naming changes to reflect private nature of scons tools * fbt: resources: fixed dist archive paths * docs: updated paths * docs: updated more paths * docs: included "resources" parameter in app manifest docs; updated assets readme * updated gitignore for assets * github: updated action versions * unit_tests: restored timeout; scripts: assets: logging changes * gh: don't upload desktop animations for unit test run Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			87 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include <stdbool.h>
 | 
						|
 | 
						|
#include <furi_hal_version.h>
 | 
						|
 | 
						|
#define GAP_MAC_ADDR_SIZE (6)
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    GapEventTypeConnected,
 | 
						|
    GapEventTypeDisconnected,
 | 
						|
    GapEventTypeStartAdvertising,
 | 
						|
    GapEventTypeStopAdvertising,
 | 
						|
    GapEventTypePinCodeShow,
 | 
						|
    GapEventTypePinCodeVerify,
 | 
						|
    GapEventTypeUpdateMTU,
 | 
						|
} GapEventType;
 | 
						|
 | 
						|
typedef union {
 | 
						|
    uint32_t pin_code;
 | 
						|
    uint16_t max_packet_size;
 | 
						|
} GapEventData;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    GapEventType type;
 | 
						|
    GapEventData data;
 | 
						|
} GapEvent;
 | 
						|
 | 
						|
typedef bool (*GapEventCallback)(GapEvent event, void* context);
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    GapStateUninitialized,
 | 
						|
    GapStateIdle,
 | 
						|
    GapStateStartingAdv,
 | 
						|
    GapStateAdvFast,
 | 
						|
    GapStateAdvLowPower,
 | 
						|
    GapStateConnected,
 | 
						|
} GapState;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    GapPairingNone,
 | 
						|
    GapPairingPinCodeShow,
 | 
						|
    GapPairingPinCodeVerifyYesNo,
 | 
						|
} GapPairing;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    uint16_t conn_interval;
 | 
						|
    uint16_t slave_latency;
 | 
						|
    uint16_t supervisor_timeout;
 | 
						|
} GapConnectionParams;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    uint16_t conn_int_min;
 | 
						|
    uint16_t conn_int_max;
 | 
						|
    uint16_t slave_latency;
 | 
						|
    uint16_t supervisor_timeout;
 | 
						|
} GapConnectionParamsRequest;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    uint16_t adv_service_uuid;
 | 
						|
    uint16_t appearance_char;
 | 
						|
    bool bonding_mode;
 | 
						|
    GapPairing pairing_method;
 | 
						|
    uint8_t mac_address[GAP_MAC_ADDR_SIZE];
 | 
						|
    char adv_name[FURI_HAL_VERSION_DEVICE_NAME_LENGTH];
 | 
						|
    GapConnectionParamsRequest conn_param;
 | 
						|
} GapConfig;
 | 
						|
 | 
						|
bool gap_init(GapConfig* config, GapEventCallback on_event_cb, void* context);
 | 
						|
 | 
						|
void gap_start_advertising();
 | 
						|
 | 
						|
void gap_stop_advertising();
 | 
						|
 | 
						|
GapState gap_get_state();
 | 
						|
 | 
						|
void gap_thread_stop();
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |