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

ble_app_multilink_central on PCA10001

Hi,

I'm attempting to use 'S120/experimental/ble_app_multilink_central' running on a pca10001 to better understand the central / peripherial comm sequencing on the nrf51.

Using the ble_app_multilink_central with no changes except for the TARGET_DEV_NAME can someone help me understand the peripherial configuration details that will cause the central in this default configuration to generate events?

Thanks,

Jeff

Parents
  • Jeff,

    It's not totally clear what issues you are having from your question. However, when I ported the stock ble_app_multilink_central from nrf6310 to the PCA10001 I removed all hard references to

    #include "nrf6310.h"
    

    and changed them to use

    #include "boards.h"
    

    Then you'll also need to define BOARD_PCA10001 in your Target Options.

    image description

    This will at least get your LEDs and buttons on the correct pins.

    Edit: I also removed all references to

    #define ASSERT_LED_PIN_NO                LED_7            
    

    Since there are only 2 LEDs on the PCA10001

Reply
  • Jeff,

    It's not totally clear what issues you are having from your question. However, when I ported the stock ble_app_multilink_central from nrf6310 to the PCA10001 I removed all hard references to

    #include "nrf6310.h"
    

    and changed them to use

    #include "boards.h"
    

    Then you'll also need to define BOARD_PCA10001 in your Target Options.

    image description

    This will at least get your LEDs and buttons on the correct pins.

    Edit: I also removed all references to

    #define ASSERT_LED_PIN_NO                LED_7            
    

    Since there are only 2 LEDs on the PCA10001

Children
No Data
Related