Hallo,
on my way to find out, how to do a build using just make and gcc, I've started with a main() function that contains just a call to ICall_init(). I compiled and linked the ICAll library and now have to resolve symbols like "ti_sysbios_knl_Clock_Params__init". While I was searching for the right library files, I realized that TI is using different file extensions. For example:
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/catalog/arm/cortexm3/lm3init/lib/Boot.aem3
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/catalog/arm/cortexm4/tiva/ce/lib/Boot.aem3
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/sysbios/fatfs/lib/release/ti.sysbios.fatfs.aem3
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/sysbios/rom/cortexm/cc13xx/CC13xx/sysbios.aem3
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/sysbios/rom/cortexm/cc13xx/golden/CC13xx/sysbios.aem3
...
or
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/sysbios/rom/cortexm/cc13xx/CC13xx/rtos_rom.xem3
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/sysbios/rom/cortexm/cc13xx/golden/CC13xx/rtos_rom.xem3
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/sysbios/rom/cortexm/cc26xx/CC26xx/rtos_rom.xem3
./tirtos_simplelink/products/bios_6_42_00_08/packages/ti/sysbios/rom/cortexm/cc26xx/CC26xx/rtos_rom_syms.xem3
...
Is there a documentation, where I can lookup the meaning of the file extensions and what schema is used to name the library, so that I'm able to pick the libraries that I need? (cc2650; GATT Server)
TIA,
Torsten