| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #pragma once
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <furi.h>
- typedef enum {
- U2fNotifyRegister,
- U2fNotifyAuth,
- U2fNotifyAuthSuccess,
- U2fNotifyWink,
- U2fNotifyConnect,
- U2fNotifyDisconnect,
- U2fNotifyError,
- } U2fNotifyEvent;
- typedef struct U2fData U2fData;
- typedef void (*U2fEvtCallback)(U2fNotifyEvent evt, void* context);
- U2fData* u2f_alloc();
- bool u2f_init(U2fData* instance);
- void u2f_free(U2fData* instance);
- void u2f_set_event_callback(U2fData* instance, U2fEvtCallback callback, void* context);
- void u2f_confirm_user_present(U2fData* instance);
- uint16_t u2f_msg_parse(U2fData* instance, uint8_t* buf, uint16_t len);
- void u2f_wink(U2fData* instance);
- void u2f_set_state(U2fData* instance, uint8_t state);
- #ifdef __cplusplus
- }
- #endif
|