Hi again!
I 'm following WORKSHOP C6000 Embedded Design Workshop Using BIOS v5.46 and I notice I need macros.ini to set environment paths for files to compile/link, but I notice that the file downloaded has only some paths. I know how to do this file, but I don't know what is the path of the MACROs espeficied in lab6, anyone does it know?
I need this:
-i"$(EDMA)\inc" -i"$(PSP)\inc" -i"$(PSP_6437)"
4. To locate all the builder paths used, replace the DspBiosBuilder section with:
["DspBiosBuilder" Settings: "Debug"]
Options=-Dconfig.importPath="$(BIOS_Common);$(PSP_I2C);$(Echo_Code)"
["DspBiosBuilder" Settings: "Release"]
Options=-Dconfig.importPath="$(BIOS_Common);$(PSP_I2C);$(Echo_Code)"
5. To locate driver libraries for debug builds, add to ["Linker" Settings: "Debug"]:
-i"$(BIOS_Common)" -i"$(PSP_Dbg)" -i"$(EDMA_Dbg)" -l"palos_bios.lib" -
l"i2c_bios_drv.lib" -l"mcasp_bios_drv.lib" -l"mcbsp_bios_drv.lib" -
l"audio_bios_drv.lib" -l"edma3_drv_bios.lib" -l"edma3_rm_bios.lib" -
l"edma3_drv_sample.lib" -l"log8.a64P"
6. To locate driver libraries for release builds, add to ["Linker" Settings: "Release"] :
-i"$(BIOS_c6000)" -i"$(PSP_Rel)" -i"$(EDMA_Rel)" -l"palos_bios.lib" -
l"i2c_bios_drv.lib" -l"mcasp_bios_drv.lib" -l"mcbsp_bios_drv.lib" -
l"audio_bios_drv.lib" -l"edma3_drv_bios.lib"
and in MACRO.ini there are these macros:
BSL=C:\CCStudio_v3.3\boards\evmdm6437_v2\include
PSP=C:\dvsdk_1_10_00_27\pspdrivers_1_10_00_09\packages
BIOS_Common=%BIOS_INSTALL_DIR%\packages\ti\bios\examples\common
BIOS_c6000=%BIOS_INSTALL_DIR%\packages\ti\rtdx\lib\c6000
Thanks a lot