Error: L6218E: Undefined symbol arch_asm_delay_us

Hi,

I'm trying to compile an example project (simple_button) from BLE_SDK6_examples (github.com/dialog-semiconductor/).

I have already the SDK installed and I have executed the python script as suggested (python dlg_make_keil5_env_v2.py -sdkpath “<path to your sdk repository>”).

When I try to compile the project it says the following error:

Rebuild started: Project: simple_button
*** Using Compiler 'V6.21', folder: 'C:\Keil_v5\ARM\ARMCLANG\Bin'
Rebuild target 'Simple_Button_531'
compiling exceptions.c...
assembling startup_DA14531.s...
compiling uart_utils.c...
compiling systick.c...
compiling system_DA14531.c...
compiling user_periph_setup.c...
compiling syscntl.c...
compiling main.c...
compiling otp_cs.c...
compiling gpio.c...
compiling hw_otpc_531.c...
compiling uart.c...
compiling arch_system.c...
linking...
.\out_DA14531\Objects\simple_button_531.axf: Error: L6218E: Undefined symbol arch_asm_delay_us (referred from uart.o).
Not enough information to list image symbols.
Not enough information to list load addresses in the image map.
Finished: 2 information, 0 warning and 1 error messages.
".\out_DA14531\Objects\simple_button_531.axf" - 1 Error(s), 0 Warning(s).
Target not created.
Build Time Elapsed: 00:00:01

I don't know what to do to remove this error.

Can someone help me?

Thanks.

Best regards

Parents Reply
  • Hi Javi,

    Thanks for the clarification.
    In order to compile our GitHub Examples on the SDK v6.0.20 you will need to follow the steps below:
    1) Download the example folder file and place it inside the following path: ...\6.0.20.1338\projects\target_apps\ble_examples
    2) Use the Python script provided on our GitRepo to fix all the SDK paths to your PC
    3) Open the Project in Keil, and make sure to include the system_library files in the sdk_arch folder.

    You will only need to include the system_library_531.c file for the DA14531 SoC.or DA14531MOD.
    In order to do that, right click on sdk_arch folder and select "Add Existing Files to Group 'sdk_arch' "

    Navigate on the following path to find the system_library_531.c file: ...\6.0.20.1338\sdk\platform\system_library\src\DA14531
    4) Save and compile the project

    Best Regards,
    OV_Renesas

Children