WMT-GmbH / pn532

no_std implementation of the Pn532 protocol using embedded_hal traits
Apache License 2.0
20 stars 19 forks source link

able to make any request, e.g. from any slice #18

Closed bool-rus closed 8 months ago

bool-rus commented 8 months ago

In some cases, we cannot know the size of the data being transferred at compile time, so we need to be able to send arbitrary data. The application can also reuse the data buffer. To achieve these goals, library users can implement the BorrowRequest trait

bool-rus commented 8 months ago

done

dimpolo commented 8 months ago

Thank you!