Hello everyone. I want to create project from stracth for nRF52832. I use nRF52 DK. I couldn't find any tutorial for this. I create new project under nRF5 SDK 16.0 and specified all path in options and other things. I can compile null project but when I copy ble blink project code to the new project that i created from stratch, i get 26 errors:
Building ‘Executable_1’ from solution ‘Executable_1’ in configuration ‘Debug’
'Output/Executable_1 Debug/Obj/system_nrf52.o' is up to date
'Output/Executable_1 Debug/Obj/SEGGER_RTT.o' is up to date
'Output/Executable_1 Debug/Obj/SEGGER_RTT_SES.o' is up to date
'Output/Executable_1 Debug/Obj/main.o' is up to date
'Output/Executable_1 Debug/Obj/SEGGER_THUMB_Startup.o' is up to date
'Output/Executable_1 Debug/Obj/ses_startup_nrf_common.o' is up to date
'Output/Executable_1 Debug/Obj/ses_startup_nrf52.o' is up to date
Output/Debug/Exe/Executable_1.elf does not exist.
Linking Executable_1.elf
undefined symbol: __end_nrf_sections_run
undefined symbol: __start_log_const_data
undefined symbol: __start_nrf_sections
undefined symbol: __start_nrf_sections_run
undefined symbol: app_button_init
undefined symbol: app_error_handler
undefined symbol: app_timer_init
undefined symbol: ble_advdata_encode
undefined symbol: ble_conn_params_init
undefined symbol: ble_lbs_init
undefined symbol: ble_lbs_on_button_change
undefined symbol: bsp_board_init
undefined symbol: bsp_board_led_off
undefined symbol: bsp_board_led_on
undefined symbol: m_nrf_log_app_logs_data_const
undefined symbol: nrf_ble_gatt_init
undefined symbol: nrf_ble_qwr_init
undefined symbol: nrf_log_default_backends_init
undefined symbol: nrf_log_frontend_dequeue
undefined symbol: nrf_log_frontend_std_0
undefined symbol: nrf_log_init
undefined symbol: nrf_pwr_mgmt_init
undefined symbol: nrf_pwr_mgmt_run
undefined symbol: nrf_sdh_ble_default_cfg_set
undefined symbol: nrf_sdh_ble_enable
undefined symbol: nrf_sdh_enable_request
Build failed
I coppied example/s132/ble_app_blinky_pca10040_s132 main code
where is the problem? thank you so much.