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...
I'm looking for a way to use the nordic uart service ( devzone.nordicsemi.com/.../ble_sdk_app_nus_eval.html) from Linux using the native Linux BLE Stack (BlueZ). My application...
Hi,
I've created an application using the S110 experimental ANCS demo. I successfully implemented ANCS and then began to structure my application around it. At some point...
Hello,
In an ongoing company project we use a couple of nRF51 transceivers forming a beacon enabled wireless sensor network consisting of one base station and multiple...
I want to count clocks in order to implement a watch. I use the RTC0 as my time-base and count mainly with this device. As it has just 24 bits it would not last for long,...
Hi,
how long does it take time if i would wake up a nrf51422 rev2 (ANT and BLE) in deepest possible sleep mode ?
And how long does it tai if after wakeup it had to communicate...
I saw that the app_timer uses the SWI0. Could you explain what it does and what the advantage is compared to "timer_list_handler_sched()" calling "timer_list_handler()" directly...
Hi All,
We are trying find a way to upgrade nrf51822 in the field post initial release.
I read the following posts
( devzone.nordicsemi.com/.../)
( developer.nordicsemi...
My board requires P0.9 and P0.10 to operate as GPIO pins. On the NRF52 these pins share the function with the NFC antenna. How do I make them function as GPIO pins?
I know...
Hi,
I just finished compiling my code for the nrf51 to take ADC measurements and send the hex values over ble tuart o my iphone. Now I want to see if I can send that data...
Hi, i know maybe this question was asked before, but i have a particulary issue.
I have 2 devices connected through BLE. Just when them get connected i need to send a byte...
Hello!
I need to read a string from UART, there's code below:
unsigned char GetChar(void)
{
while(!RI)
;
RI = 0;
return SBUF;
}
int Readfstr(void)
{
char...
Hardware: Rigado BMD-200 B using the nRF51822_xxAB
Bootloader: dfu_dual_bank_ble_s110_pca10028 with the device set to nRF51822_xxAB
Softdevice: S110_nRF51_8.0.0
DFU Tool...
I'm trying to use BLE library for python to communicate with one Nordic nrf51844 chipset. Because one characteristic is notification enabled, I need to enable notification...
Does there exist a white paper describing some typical PPI use cases with coding examples? The only one I've found is the peripheral/gpiote example and it is severely lacking...
Updates are moved to the end of the question
I created a modified version of pca10028.h and boards.h and have preprocessors changed so that the following new config is...
I example test ble_central and ble_peripheral of ble_app_uart.
Radio TX and RX test is OK.
It confirmed the data communications relating to uart_event_handler function....
I'm trying to get a time stamp using app_timer_cnt_get(&ticks), but the ticks always equals 0. And I have called APP_TIMER_INIT() to init the app timer. I have no idea why...
Hi everyone, I have been given a nRF51-DK board and I should use it to send data retreived from a sensor to it through Arduino, to finally receive it in my cell phone. I am...
Hello everyone,
I'm brand-new here. I have developed quite a bit of software on desktop PC's, but this is my first experience with embedded programming. A few weeks ago...