Hello,
I’m using an external NFC reader/controller (NXP PN7160A1HN/C100E) connected via I2C to an nRF52840 module (Raytac MDBT50Q-1MV2) on a custom PCB. (Programming is...
The blinky example from the official website can be programmed, but after opening the code and compiling with SES to generate the hex file, it cannot be programmed. An MBR...
I have a custom nrf52833 based board that I tried programming over the integrated JLink on then nrf52 dk via swd. All attempts to program or recover the board failed with...
I'm planning on using an e-ink display with my custom PCB . But when I add/enable the e-ink display node in my device tree, the TF-M code throws an exception in /ncs/v3.2...
Segger RTT (Real-Time Terminal) supports multiple data channels.
RTT Viewer uses channel 0 only, and implements multiple virtual terminals on top of this. The terminal can be switched by SEGGER_RTT_SetTerminal…
Smartphones and tablets have revolutionized the manner in which people communicate with each other. Mobile applications with location-based features like Bluetooth beacons, WiFi, and GPS are helping people…
Introduction
The recently released nRF5 SDK for Bluetooth Mesh does not provide Keil project files for its example projects. Fortunately, it's relatively easy to set up your own project from scratch.…
Here are two simple functions to use when you want to use timestamps for time measurement.
uint32_t millis(void)
{
return(app_timer_cnt_get() / 32.768);
}
and for comperison of current with given…
There are times that we needed to flash the nRF5x series on a PC where the development software were not installed. The problem could be worst when network access is limited. With a HEX file on hand…
Debugging interrupts in not an easy task. During the development of Jumper's Emulator, we gather few useful tips that we think can help you all when debugging the nRF52 interrupts. Hope it will help…