6.2.2 MacOS
Reader opening error on macOS – Code (0x54)
Last Updated: October 4, 2023Reader opening error on macOS - Code (0x54)
Running Python SDK/software on macOS
Last Updated: May 4, 2023For Python software examples, we suggest you use any Python 3.x.x version. If you don’t have the right Python version installed, use the following command line to install a new version: brew install python Now simply run our source code software example with the command: python3 file_name.py Please have in mind that our Python SDK structure has only one executable .py file (main file) and that one imports all other files as modules. For example, the NDEF Python SDK console uses ndef_example.py as the main file, so the software is executed with the following command: python3 ndef_example.py To make sure which file is the main executable file, you can simply check the source code of the *.py files and look for the one that has a ReaderOpen/ReaderOpenEx function calls. NOTE: This test was performed with Python 3.7.2 so and included the following SDK: https://code.d-logic.com/nfc-rfid-reader-sdk/ufr-ndef-examples-python-console https://code.d-logic.com/nfc-rfid-reader-sdk/ufr-mf-examples-c
FTDI drivers installation on 64-bit macOS
Last Updated: November 25, 2022FTDI drivers installation on 64-bit macOS Driver Installation Manual Download and unpack the drivers for your OS from the FTDI
If the FTDI device not detected by MacOS, how to solve the problem
Last Updated: March 30, 2023The FTDI device is not detected by macOS. Check out how to solve the problem. Check the FTDI drivers’ installation If the macOS cannot detect the Digital Logic FTDI device, please check if you have installed the drivers properly. Follow the FTDI drivers installation manual for your operating system and make sure you have selected the proper D2XX and VCP drivers for your hardware architecture. Install FTDI drivers on macOS Download the driver from the D2XX Drivers section of the FTDI website and save it to the hard disk. The driver is provided in disk image (.dmg) format. Mount the disk image by double-clicking on the PPC D2XX0.1.0.dmg icon for Power PC users or the Universal D2XX0.1.0.dmg icon for Intel Mac users. Start a Terminal session (Go > Applications > Utilities > Terminal) Copy libftd2xx.0.1.0.dylib to /usr/local/lib directory (cp Desktop/D2XX/bin/libftd2xx.0.1.0 /usr/local/lib) Change the directory to /usr/local/lib (cd /usr/local/lib) Create a symbolic link to the library (ln -sf libftd2xx.0.1.0.dylib libftd2xx.dylib) Samples written in C are provided to show how to use the library and verify the installation. These are command-line-based applications that must be executed from the Terminal window. To compile and run the samples perform the following steps (these assume you...