Hi,
I have a SPI slave device which outputs 8-bit registers that I have to assemble. For example, I receive two 8-bit registers, a high and a low register, which I have...
I have a PCA10059 dongle. I have inadvertently configured pin P0.25 as the sleep debug pin and I use active state 0 as I am using off board LEDs with reverse logic. This means...
If you're working on a product that requires you to show and translate GATT Attribute (Service, Characteristic and/or Descriptor) UUIDs to Strings to the user, it's likely...
Hello,
We have been trying the sendNotification call and after getting a success log we are not able to send a second notification. I'll copy the snippet of code that we...
I have a firmware developed on the nrf52840 development board. When porting it to nrf9160, a lot of errors were reported. How can I use the LOG output function on nrf9160...
Hi I would like to ask you for advice on how to solve my problem with Ble and the timer I am trying to add a timer to examples\ble_peripheral\ble_app_uart the timer works...
Hello, i am working on the Light switch proxy server example with SES and i want use TWI driver, and i added the files and the path for "nrf_drv_twi.h", i put #include "nrf_drv_twi...
Dear,
Firstly, I configured the GPIO pin 9 and pin10 as GPIO by defining the CONFIG_NFCT_PINS_AS_GPIOS in my project.
And in my project, button1 uses GPIO pin 10 and button2...
I have successfully run the SAADC example, and make it a multi-channel example. I see the function saadc_callback(nrf_drv_saadc_evt_t const * p_event) which performs the printing...
Hello,
I have a trouble handling new chip nRF52832 I recently changed.
what I previously used is nRF51822, and there wasn't that kind of problem.
I'm using my custom...
Hello!
I'm attempting to flash a Thingy:52 with the Thingy firmware using Segger Embedded Studio. At this point, I'm just trying to replicate what comes on the Thingy...
I am trying to get Interrupt from UART Rx, so that if any data is received on RX pin it will go to its interrupt routine, but I am unable to find any interrupt routine that...
Hello,
While developing on the nRF52840, we noticed recently that the IRQ priorities that we find in app_util_platform.h (from SDK 15.2.0) differ from the ones we can...
Hi i'm a newbie in nordic chip. Can someone please explain to me that how to enable and disable sleep in nrf51822 and what kind of setup need to be done?
Example in Arduino...
Hi all,
I'm currently working on adapting this example to fit my needs for testing a Bluetooth Mesh network.
I want to add the functionality for nodes to send to each...
Hi All.
I am aware that the USB nRF52840 Dongle does not support debugging but, can this device issue AT commands to a remote nRF52840 module in order to check the value...
Dear,
After adding the peer manager module of the SDK 15.2 and some other codes about configuring static passkey in the example "ble_app_uart" in ble_peripheral, I can successfully...
Hello,
I just install the nRF sniffer and have some trouble.
I use the following software version :
- Wireshark 2.6.4
- python 2.7
- pyserial-3.4-py2.py3-none...
Hello,
I am currently sampling SAADC every 1ms using PPI. Samples are collected in predefined buffer, and then send over BLE with ble_nus_data_send() function.
I would...
If I use sd_app_evt_wait() or nrf_pwr_mgmt_run, I lose TWI. In other words, in order to use TWI, I need re-initialize it. If I use:
__SEV(); __WFE(); __WFE(); It works but...