Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Link to nfcpy in docs #2238

Merged
merged 3 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion documentation/developers/rfid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* [RDM6300 Reader](rdm6300.md)
* [MFRC522 SPI Reader](mfrc522_spi.md)
* [PN532 I2C Reader](pn532_i2c.md)
* [Generic Readers without HID (NFCpy)](generic_nfcpy.md)
* [Mock Reader](mock_reader.md)
* [Template Reader](template_reader.md)


2 changes: 1 addition & 1 deletion documentation/developers/rfid/generic_nfcpy.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This module is based on the user space NFC reader library [nfcpy](https://nfcpy.
The link above also contains a list of [supported devices](https://nfcpy.readthedocs.io/en/latest/overview.html#supported-devices).

The goal of this module is to handle USB NFC devices, that don't have a HID-keyboard
driver, and thus cannot be used with the [genericusb](genericusb.md) module.
driver, and thus cannot be used with the [genericusb](genericusb.md) module. Also some serial devices are supported.

> [!NOTE]
> Since nfcpy is a user-space library, it is required to supress the kernel from loading its driver.
Expand Down
Loading