Hello, I try to set up the 6lowpan environment on my rpi2 following This page
When I wanted to run the radvd demon, I got error: ioct1 failed for bt0: No such device.
How can I resolve this problem?
Change Heap_Size EQU 2048
to Heap_Size EQU 0
in arm_startup_nrf51.s
Great! Should we close this question?
I use the example of ...\Nordic\nrf51\examples\iot\ipv6_coap_client\boards\pca10028\arm\app_ipv6_coap_client_pca10028. Then open it in Keil_v5. Options for Target setting is Device :nRF51422xx_AC
IROM1 : start 0x18000 and size 0x28000 IRAM1 : start 0x20002000 and size 0x2000
And I see the function leds_init is :
static void leds_init(void) { // Configure leds. LEDS_CONFIGURE((LED_ONE | LED_TWO | LED_THREE | LED_FOUR));
// Turn leds off.
LEDS_OFF((LED_ONE | LED_TWO | LED_THREE | LED_FOUR));
}
But the board only has two leds. This program can't work on PCA10001?