Nordic nRF52840: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
mNo edit summary
Brian Wilson (talk | contribs)
Line 55: Line 55:
# "Create a new application" using the "Copy sample" with "Blink LED (PWM)". I put it in C:\Documents\source\nordic\blinky_pwm
# "Create a new application" using the "Copy sample" with "Blink LED (PWM)". I put it in C:\Documents\source\nordic\blinky_pwm
# Use "Add Configuration" to set the board. Set the board and tell it to build for debugging (see "Optimization Level") I told it to create a "build" directory and not to do a build yet.
# Use "Add Configuration" to set the board. Set the board and tell it to build for debugging (see "Optimization Level") I told it to create a "build" directory and not to do a build yet.
# When it looked happy, I clicked the "build" button in the bottom bar. It was not happy. I removed a version of Cmake that was installed at the system level. Hmm looks like a Cmake extension installed that, maybe it was part of the bundle. Damn, there it is at the bottom of the list for the "nRF Connect for VS Code Extension Pack".  I reinstalled it. It does not install cmake.exe, it installs ''support'' for cmake as in prettifying and intellicode things. "Cmake language support", it's called. In there I learned I can tell it where my cmake is. "cmake.cmakePath" in a json setting file.
# When it looked happy, I clicked the "build" button in the bottom bar. It was not happy. I removed a version of Cmake that was installed at the system level. Hmm looks like a Cmake extension installed that, maybe it was part of the bundle. Damn, there it is at the bottom of the list for the "nRF Connect for VS Code Extension Pack".  I reinstalled it. It does not install cmake.exe, it installs ''support'' for cmake as in prettifying and intellicode things. "Cmake language support", it's called. In there I learned I can tell it where my cmake is. "cmake.cmakePath" in a json setting file. '''Running build from the bottom bar was the problem, it was gone once I removed cmake from the system, and build from the nrf extension worked.'''


===== JTAG =====
===== JTAG =====

Revision as of 02:13, 30 November 2024

This MCU does Zigbee, I got them for that and of course have done nothing with so far.

Inventory

  • nRF52840-DK developer board ($49)
  • 2 Nordic tiny dev boards in the USB form factor, NRF52840-DONGLE from Digikey, about $10 each.
  • Seed Studio "Xiao nrf52840 Sense" called a "sense" because it has a couple sensors onboard, a 6-axis IMU and a MEMS microphone. The sense is about $16 and the regular board (the "nonsense"?) is cheap, like $5 or so.

Loading Circuit Python

The nrf52840 supports USB making it easy to program.

I can put CircuitPython on it. Install the dev tools: nRF Connect for desktop Use that to install the programmer.

I think it's now possible to use an Adafruit fork of the Nordic utility to get the Circuit Python bootloader installed.

The other option is to use either a very expensive Segger J-Link (+$800) or the $49 Nordic nRF52840-DK development board. I got one of the $49 boards, here we go. Alas it has a weird tiny connector so, another cable? Oy. To use it with the Xiao I should probably set up pogo pins.

Install bootloader

https://github.com/adafruit/Adafruit_nRF52_Bootloader/blob/master/README.md

conda create -n adafruit-nrf
conda activate adafruit-nrf
pip3 install adafruit-nrfutil

Download a bootloader from https://github.com/adafruit/Adafruit_nRF52_Bootloader/releases I used https://github.com/adafruit/Adafruit_nRF52_Bootloader/releases/download/0.6.4/mdk_nrf52840_dongle_bootloader-0.6.4_s140_6.1.1.zip

adafruit-nrfutil dfu serial -p com3 -pkg *hex

After getting the board to connect as a mass storage device then I can put Circuit Python onto it. I think for this board, I will need to install their bootloader too.

My first project: HID Keyboard

When I got CircuitPython running I put the "Hello world" app on there and changed it to playback my long and complex password. That's it for this project!

It powers on and becomes an HID keyboard in about 2 seconds and then on each button press it plays my password. Ta-da!

Other ways I could do this: I could use a Adafruit RP2040 Feather for $10. I already got it going on an Adafruit Circuit Playground Express $25.

It's about what's in my junk drawer inventory, not what it costs. The nRF is a handy form factor. A Pi Zero for $5 would work but I don't own one and it would require booting Linux so it would be too slow. I did try out the HID keyboard thing on a Pi Zero W. Too complicated. A $4 Pico would work but does it have a button? (No.)

nRF52840 DK

https://nordicsemi.com/start52840dk

I followed along with a series of 5 videos published by Nordic to set up VS Code and the nRF tools. Here is part 1. https://youtu.be/EAJdOqsL9m8?si=xd3K52TBkHN84LRs

  1. Install nRFcommand line tools to C:\Program FIles\SEGGER (I downloaded nrf-command-line-tools-10.24.2-x64.exe -- there is a Linux version too.) It installs a J-Link driver as part of the process.
  2. Install nRF Connect SDK. Do this from the nRF extension pack in VS Code. You can install the latest toolchain from the extension. This takes some time, the download is big I guess.
  3. Once the toolchain has installed, install the latest SDK (2.8.0 currently) using "Manage SDK". I installed it to C:\ncs\2.8.0 as suggested in the video. This is a time-consuming step too.
  4. "Create a new application" using the "Copy sample" with "Blink LED (PWM)". I put it in C:\Documents\source\nordic\blinky_pwm
  5. Use "Add Configuration" to set the board. Set the board and tell it to build for debugging (see "Optimization Level") I told it to create a "build" directory and not to do a build yet.
  6. When it looked happy, I clicked the "build" button in the bottom bar. It was not happy. I removed a version of Cmake that was installed at the system level. Hmm looks like a Cmake extension installed that, maybe it was part of the bundle. Damn, there it is at the bottom of the list for the "nRF Connect for VS Code Extension Pack". I reinstalled it. It does not install cmake.exe, it installs support for cmake as in prettifying and intellicode things. "Cmake language support", it's called. In there I learned I can tell it where my cmake is. "cmake.cmakePath" in a json setting file. Running build from the bottom bar was the problem, it was gone once I removed cmake from the system, and build from the nrf extension worked.
JTAG

The DK board has a Segger J-Link JTAG built in. The drivers install as part of the toolkit that's now installed on Pearl. They have a wiki for it here: Segger wiki

You need Openocd in order to use this, there is a binary version for Windows or you can build from source for Linux.

Resources

https://www.nordicsemi.com/Products/Development-hardware/nRF52840-DK/GetStarted#infotabs

RIOT operating system https://doc.riot-os.org/group__boards__nrf52840-mdk-dongle.html

Nordic documentation https://docs.nordicsemi.com/

Nordic Getting startedguide for the dongle