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

SDK11 broken

trying to build a simple example in sdk 11 just to run it on the nrf52-dk

of course it is missing pieces, else life would be no fun, apparently...

oh, i don't know, like some defines and functions...

    #let's try to build it...
    user@vm:~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/pca10040/s132/armgcc$ make GNU_INSTALL_ROOT=/usr/bin/gcc-arm-none-eabi-4_7-2012q4 D=1
    rm -rf _build
    echo  Makefile
    Makefile
    mkdir _build
    Compiling file: app_button.c
    Compiling file: app_error.c
    Compiling file: app_error_weak.c
    Compiling file: app_timer.c
    Compiling file: app_util_platform.c
    Compiling file: nrf_assert.c
    Compiling file: nrf_log.c
    Compiling file: retarget.c
    Compiling file: RTT_Syscalls_GCC.c
    Compiling file: SEGGER_RTT.c
    Compiling file: SEGGER_RTT_printf.c
    Compiling file: app_uart.c
    Compiling file: nrf_delay.c
    Compiling file: nrf_drv_common.c
    Compiling file: nrf_drv_gpiote.c
    Compiling file: nrf_drv_uart.c
    Compiling file: main.c
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c: In function 'advertising_start':
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c:161:5: error: implicit declaration of function 'bsp_indication_set' [-Werror=implicit-function-declaration]
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c:161:35: error: 'BSP_INDICATE_ADVERTISING' undeclared (first use in this function)
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c:161:35: note: each undeclared identifier is reported only once for each function it appears in
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c: In function 'ble_stack_init':
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c:174:39: error: 'NRF_CLOCK_LFCLKSRC' undeclared (first use in this function)
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c: In function 'main':
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c:211:5: error: implicit declaration of function 'bsp_init' [-Werror=implicit-function-declaration]
    ~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/main.c:211:25: error: 'BSP_INIT_LED' undeclared (first use in this function)
    cc1: all warnings being treated as errors
    make: *** [_build/main.o] Error 1
    
    
    #hm...ok let's see if we can find the define....
user@vm:~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/pca10040/s132/armgcc$ grep -R BSP_INIT_LED ~/nordic/
    ~/nordic/SDK_v11.0.0/examples/ant/ant_background_scanning/main.c:    err_code = bsp_init(BSP_INIT_LED,
    ~/nordic/SDK_v11.0.0/examples/ant/ant_broadcast/broadcast_rx/main.c:    err_code = bsp_init(BSP_INIT_LED,
    ~/nordic/SDK_v11.0.0/examples/ant/ant_broadcast/broadcast_tx/main.c:    err_code = bsp_init(BSP_INIT_LED,
    ~/nordic/SDK_v11.0.0/examples/ant/ant_fs/client/main.c:    err_code = bsp_init(BSP_INIT_LED | BSP_INIT_BUTTONS, APP_TIMER_TICKS(100, APP_TIMER_PRESCALER), button_event_handler);
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_bpwr/bpwr_rx/main.c:    err_code = bsp_init(BSP_INIT_LED | BSP_INIT_BUTTONS,
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_bpwr/bpwr_tx/main.c:    err_code = bsp_init(BSP_INIT_LED | BSP_INIT_BUTTONS,
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_bsc/bsc_rx/main.c:    err_code = bsp_init(BSP_INIT_LED, APP_TIMER_TICKS(100, APP_TIMER_PRESCALER), NULL);
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_bsc/bsc_tx/main.c:    err_code = bsp_init(BSP_INIT_LED | BSP_INIT_BUTTONS,
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_bsc/bsc_tx/main.c:    err_code = bsp_init(BSP_INIT_LED, APP_TIMER_TICKS(100, APP_TIMER_PRESCALER), NULL);
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_hrm/hrm_rx/main.c:    err_code = bsp_init(BSP_INIT_LED | BSP_INIT_BUTTONS, 
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_hrm/hrm_tx/main.c:    err_code = bsp_init(BSP_INIT_LED | BSP_INIT_BUTTONS,
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_hrm/hrm_tx/main.c:    err_code = bsp_init(BSP_INIT_LED, APP_TIMER_TICKS(100, APP_TIMER_PRESCALER), NULL);
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_sdm/sdm_rx/main.c:    err_code = bsp_init(BSP_INIT_LED | BSP_INIT_BUTTONS,
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_sdm/sdm_tx/main.c:    err_code = bsp_init(BSP_INIT_LED, APP_TIMER_TICKS(100, APP_TIMER_PRESCALER), NULL);
    ~/nordic/SDK_v11.0.0/examples/ant/ant_plus/ant_sdm/sdm_tx/main.c:    err_code = bsp_init(BSP_INIT_LED | BSP_INIT_BUTTONS,
    ^C

    #ok, so let's look for things that are not uses of this define to find the definition...
    user@vm:~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/pca10040/s132/armgcc$ grep -R BSP_INIT_LED ~/nordic/ | grep -v bsp_init

    #oh...apparently it does not exist...wonderful...
    user@vm:~/nordic/SDK_v11.0.0/examples/ble_peripheral/ble_app_beacon/pca10040/s132/armgcc$ 
Related