This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI-RTOS
My query is regarding pdkProjectCreate.sh script under PDK of processor_sdk_rtos_am57xx_5_01_00_11 .
As per http://software-dl.ti.com/processor-sdk-rtos/esd/docs/latest/rtos/index_overview.html#building-the-sdk pdkProjectScript can be use to create example project for Code Composer Studio.
That script able to create what its say, but my query is regarding csl examples. Same scripts not able to create project for ADC, PWM e.t.c under CSL .
Is there any way to create project for PWM,ADC that can be import into Code composer studio just like it create for GPIO,UART etc.
Hi Rahul,
With Makefile approach i tried to build epwm_duty_cycle_test_app available in examples but i got only object file, there is no .out file. Also that application is written as baremetal program.
Is there way to create RTOS application just like other application are created using pdkProjectcreate.sh .
Am trying to create Code composer project as you mention in above link but not getting success yet.
Got some error while build as below:
../csl_a15_init.asm:152: undefined reference to `_bss_start'
../csl_a15_init.asm:153: undefined reference to `_bss_end'
is there any example how to create RTOS application for CSL
Akash,
That is not necessarily true for all the examples. For example since you were interested in ADC . If you look at the ADC test example in CSL in the folder pdk_am65xx_1_0_3\packages\ti\csl\example\adc\adc_singleshot_test_app\adc_app.c, you will find that the code has conditional statements to build for A15, DSP and M4 on AM572x.
The test contains #if defined (_TMS320C6X) reference in the code which is the code that will only compile when using C66x compiler as that macro is defined by the C6000 compiler. Similarly code that is found under #if defined (__TI_ARM_V7M4__) will only be compiled when using TI ARM compiler for the M4 core.
Regards,
Rahul
Hi Rahul,
Can i know which makefile used to build pwm & adc csl application examples. As am trying to create CCS project with the help of makefile as suggested in casse of SBL. But getting errors in code composer studio.
In case of SBL makefile is well written having all required information to create Code composer project same will not true in case of other projects. Can i know how to get to know what are the path i need to add in directories & what source file need to be include to build project in Code composer.
Hi lding,
I added library you suggest but after adding csl and board related library am getting other undefined symbol error for UART_stdioInit , Then i added ti.drv.uart.ae66 as am building my application for C667x DSP. But these undefined symbol error are coming continuously
Library i added:
ti.csl.ae66
ti.csl.intc.ae66
ti.board.ae66
ti.drv.uart.ae66
Is there any documentation which suggest what library are needed for particular application. Or everybody have to play-around across all libraries mention in SDK
As once i added one library another undefined symbol error is generated