I'm having some trouble successfully entering ON,IDLE mode. I have pared-down my application to do the following:
Initializes the app_timer using the scheduler:
...
I want to control GPIO toggle by PPI. Timer1 is in timer mode. CC[0] is 1000, and CC[1] is 8000.
I use compare[0] to toggle gpio18 by PPI. I also want to use compare[1] to...
Hi,
I use two evk board to connected and test the uart serialization sample(ble_s110_serialization), one is ble_app_hrs and one is ble_app_connectivity. But I have one...
I am getting get BLE_EVT_USER_MEM_REQUEST and BLE_GAP_EVT_CONN_PARAM_UPDATE event, when writing to ble device, sample code did not handle these event, and seems no document...
Hello:
Why do I erase SDK5.2 version of flash and read not, in SDK4.2 can. I tested nrf51_sdk_v5_2_0_39364\nrf51822\Board\nrf6310\flashwrite_example is a good example.However...
before i write the flash, it has been erased.so ,its value is all 0xff.
when i write 0x00 to flash address 0x0001,the value read out is not 0x00 but 0x01,and the value in...
There is only one constructor for type BluetoothGattCharacteristic in Android SDK
BluetoothGattCharacteristic(UUID uuid, int properties, int permissions)
Does the...
Dears,
I would like to implement a solution for multi-nus(peripherals) to connect one ble_app_multilink_central(centrals). Is it the right way to implement multi-nus connecting...
Hello, I am trying to set my own BLE service, and on the adverstisement initialization I get an error 0x0000000c when calling to ble_advertising_init() .
Why does it mean...
I'm trying to implement a BLE Central device on an STM32 using Serialization to connect with an nRF52-DK board; I've previously gotten a BLE Peripheral working on the same...
Hello All,
I want to write the peripheral code which will send sensor reading to central.
For that I started looking into the Uart_Nus peripheral code from SDK.
I tried...
Hi,
We have a BLE Tx (Transmitter) and BLE Rx (Receiver)
BLE Tx : Nordic nrf51822 (Role: Peripheral, Server)
BLE Rx : Other chip (Role: Central,Client) ...
Hi
We are seeing a significant delay in a flash-related operation on the nrf52840, specifically using the function sd_flash_page_erase() When we use that function to erase...
Hi,
I just changed the ble_app_hrs_freertos example from SDK v 14.0:
APP_ADV_TIMEOUT_IN_SECONDS to 5 seconds in main.c
Enable debug log for various components...
Hi,
We tripped on an odd bug: we were getting corrupted data from flash if Keil's C51 compiler used a MOVX instruction instead of MOVC.
Changing the pointers from generic...
Hi Nordic Devzone,
I want to send a packet using send_reliable_message periodically every 3 seconds(using nrf_delay_ms for that) but i get
NRF_ERROR_INVALID_STATE (in...
Hi,
we are working on device that will have Bluetooth in it.
It uses 3rd party Bluetooth module, that is qualified from manufacturer of module.
We are making all CE, FCC...
Hello All,
I am just beginner with Nordic SDK.
I want to send simple hard coded string from Nordic UART service from peripheral to client.
I just tried the below program...
I happened upon this blog post from Estimote where they claim to have increased power output of the NRF52 to +10dbm.
blog.estimote.com/.../updated-location-beacons-200...
I am working in sdk14 nrf52832
I want to write flash after BLE initializing ,but write flash it has no action
while(sd_flash_page_erase(64) != NRF_SUCCESS){} //address...
Hi,
I'm using nrf52 dev board on sdk version 14.0 with GCC compiler. I modified the hrs freertos example to add a simple thread with same priority as of logger thread....