mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
585b7f963d
merge ofw commit
36 lines
835 B
C
36 lines
835 B
C
#pragma once
|
|
#include "hid_usage_desktop.h"
|
|
#include "hid_usage_button.h"
|
|
#include "hid_usage_keyboard.h"
|
|
#include "hid_usage_consumer.h"
|
|
#include "hid_usage_led.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
uint16_t vid;
|
|
uint16_t pid;
|
|
char manuf[32];
|
|
char product[32];
|
|
} FuriHalUsbCcidConfig;
|
|
|
|
typedef struct {
|
|
void (*icc_power_on_callback)(uint8_t* dataBlock, uint32_t* dataBlockLen, void* context);
|
|
void (*xfr_datablock_callback)(
|
|
const uint8_t* dataBlock,
|
|
uint32_t dataBlockLen,
|
|
uint8_t* responseDataBlock,
|
|
uint32_t* responseDataBlockLen,
|
|
void* context);
|
|
} CcidCallbacks;
|
|
|
|
void furi_hal_ccid_set_callbacks(CcidCallbacks* cb);
|
|
|
|
void furi_hal_ccid_ccid_insert_smartcard(void);
|
|
void furi_hal_ccid_ccid_remove_smartcard(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|