Skip to content Skip to sidebar Skip to footer

Android Rom And Raspberry Pi 3 Plus Nfc

We are working with Android Things on Raspberry pi 3, everything works great, recently we got an NXP board called OM5578/PN7150, basically to use NFC efficiently. Through NXP guide

Solution 1:

  • Android Things only allows User-Space Drivers, loading additional kernel modules isn't permitted. Unfortunately there is currently no User-Space driver types that would be suitable for NFC: https://developer.android.com/things/sdk/drivers/index.html
  • Since your NFC device seems to be I2C based, it would be possible to access it via Android Things PIO API: https://developer.android.com/things/sdk/pio/i2c.html. You could basically port an Arduino example. This is only a valid approach if the app that you intend to run is your own (because if not, the app would try to access the NFC module via the normal Android API instead of your own one).
  • If you want to follow the NXP porting guidelines using the ASOP, start with a fork that was already adapted for the RPi, like this one: https://github.com/lineage-rpi.
  • The kiosk mode is a secondary problem which you should be able to solve with most more recent android versions.

Post a Comment for "Android Rom And Raspberry Pi 3 Plus Nfc"