This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nRF51-DK to nRF51822-BEACON s130

I've gotten the experimental_ble_app_s130_example_c_pca10028 (BLE Dual role application) to work with my nRF51-DK (modified for my needs). It's an nrF51422 chipset.

I want top program it on the nRF51822-BEACON with this code. I've done this with J-Link..(s130 0.9 too).
It programs and runs...but I'm obviously missing something because it never catches an event when I'm scanning.

I've disabled the uart in the example too, and made sure the buttons map correctly.

What other hardware changes am I missing? Any help is much appreciated.

My IO is programmed as such. NRF_GPIO->DIRSET = 0x0001F0FF; NRF_GPIO->OUTCLR = 0x0001F0FF;

All logging/uart disabled

Board Config #define GPIO_PIN_BASE 0

#define BUTTON_1 8 //17 //changed from 10028 board to nRF6930 (iBeacon) #define BUTTON_2 18 //18

#define BOARD_UART0_RTS 11 //8 #define BOARD_UART0_TX 9 //9 #define BOARD_UART0_CTS 21 //10 #define BOARD_UART0_RX 24 //11

Related