mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
0d4ead8fbd
* Add initial ISO7816 support * Format sources and sync API Symbols version * Debug: change VID/PID in ccid test app to opensc detectable generic one Co-authored-by: あく <alleteam@gmail.com>
36 lines
874 B
C
36 lines
874 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* pcToReaderDataBlock,
|
|
uint32_t pcToReaderDataBlockLen,
|
|
uint8_t* readerToPcDataBlock,
|
|
uint32_t* readerToPcDataBlockLen,
|
|
void* context);
|
|
} CcidCallbacks;
|
|
|
|
void furi_hal_ccid_set_callbacks(CcidCallbacks* cb, void* context);
|
|
|
|
void furi_hal_ccid_ccid_insert_smartcard(void);
|
|
void furi_hal_ccid_ccid_remove_smartcard(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|