This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nRF8001 DevKit usage with FPGA and Embedded Linux

image description I would like to develop an application with Nordic's nRF8001 DevKit. The master emulator of this kit is an USB Dongle and it is originally meant for PC connection. My final goal for the project is to run it on an FPGA (possibly through Embedded Linux). Regarding this goal, I have some questions.

  1. Is the master emulator (USB Dongle) compatible with Linux? Are there any open-source drivers or from Nordic?

1a) If there is a driver for Linux, can I use it with Embedded Linux or do I have to make some modifications to it?

1b) If there isn't a driver for Linux, can I write my own Embedded Linux driver (no prior experience on drivers)? Are there any similar/reference drivers?

  1. Is it possible to use the nRF8001 chip, not the USB Dongle, with FPGA as a master, possibly through serial interface (SPI/UART)?
Parents
  • The nRF8001 USB dongle (Master Emulator) is not officially supported on Linux, and there are no official drivers from Nordic for Linux systems. Some community efforts with libusb exist, but they are limited and not well-suited for Embedded Linux without significant custom work.

    If you're targeting an FPGA + Embedded Linux, it's better to use the nRF8001 chip directly via SPI. The chip uses ACI protocol over SPI, which you can implement on FPGA or a microcontroller.

    Nordic provides example ACI code (e.g. for Arduino) that can be a good reference. Writing a Linux USB driver from scratch is possible but quite complex, especially without driver experience.

Reply
  • The nRF8001 USB dongle (Master Emulator) is not officially supported on Linux, and there are no official drivers from Nordic for Linux systems. Some community efforts with libusb exist, but they are limited and not well-suited for Embedded Linux without significant custom work.

    If you're targeting an FPGA + Embedded Linux, it's better to use the nRF8001 chip directly via SPI. The chip uses ACI protocol over SPI, which you can implement on FPGA or a microcontroller.

    Nordic provides example ACI code (e.g. for Arduino) that can be a good reference. Writing a Linux USB driver from scratch is possible but quite complex, especially without driver experience.

Children
No Data
Related