rustui / hid

A cross platform plugin for communicating with HID devices for Flutter applications.
11 stars 7 forks source link

Send APDU #5

Closed redDwarf03 closed 2 years ago

redDwarf03 commented 2 years ago

hello is it possible with your project to send APDU like in this project https://github.com/LedgerHQ/ledgercomm ? Thank you

rustui commented 2 years ago

I don't know much about APDU. After exploring the link you posted a bit, I think it might be possible, but you must connect devices via USB and construct raw bytes by hand.

redDwarf03 commented 2 years ago

ok. thanks your library provides a async API. could you provide a non-async API please ?

rustui commented 2 years ago

Android and web platforms does not support sync api. There is also no way to convert an async api to a sync one in dart.

redDwarf03 commented 2 years ago

Ok thx for your answer