Advertisement
TringaliLuca

/etc/nfc/libnfc.conf

Jul 23rd, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. # Allow device auto-detection (default: true)
  2. # Note: if this auto-detection is disabled, user has to set manually a device
  3. # configuration using file or environment variable
  4. allow_autoscan = true
  5.  
  6. # Allow intrusive auto-detection (default: false)
  7. # Warning: intrusive auto-detection can seriously disturb other devices
  8. # This option is not recommended, user should prefer to add manually his device.
  9. allow_intrusive_scan = false
  10.  
  11. # Set log level (default: error)
  12. # Valid log levels are (in order of verbosity): 0 (none), 1 (error), 2 (info), 3 (debug)
  13. # Note: if you compiled with --enable-debug option, the default log level is "debug"
  14. log_level = 1
  15.  
  16. # Manually set default device (no default)
  17. # To set a default device, you must set both name and connstring for your device
  18. # Note: if autoscan is enabled, default device will be the first device available in device list.
  19.  
  20. #These are for Raspberry Pi 3
  21. #device.name = "_PN532_SPI"
  22. #device.connstring = "pn532_spi:/dev/spidev0.0:50000"
  23. device.name = "_PN532_I2c"
  24. device.connstring = "pn532_i2c:/dev/i2c-1"
  25. #device.name = "_PN532_UART"
  26. #device.connstring = "pn532_uart:/dev/ttyAMA0"
  27. #device.connstring = "pn532_uart:/dev/ttyS0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement