Other Parts Discussed in Thread: SYSBIOS, CC2650
Tool/software: TI-RTOS
Hello , I have a question that is how to find out the source code:
just check the docs of BIOS,
C:\ti\tirtos_cc13xx_cc26xx_2_21_00_06\products\bios_6_46_01_37\docs\cdoc\index.html
Clock_Handle Clock_create(Clock_FuncPtr clockFxn, UInt timeout, const Clock_Params *params, Error_Block*eb);
// Allocate and initialize a new instance object and return its handle
Void Clock_construct(Clock_Struct *structP, Clock_FuncPtr clockFxn, UInt timeout, const Clock_Params *params);
// Initialize a new instance object inside the provided structure
I like to know what difference between these two functions, so I want to check the source code, but only found declarations:
/* construct */ xdc__CODESECT(ti_sysbios_knl_Clock_construct, "ti_sysbios_knl_Clock_construct") __extern void ti_sysbios_knl_Clock_construct( ti_sysbios_knl_Clock_Struct *__obj, ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__prms );
/* construct */ xdc__CODESECT(ti_sysbios_knl_Clock_construct, "ti_sysbios_knl_Clock_construct") __extern void ti_sysbios_knl_Clock_construct( ti_sysbios_knl_Clock_Struct *__obj, ti_sysbios_knl_Clock_FuncPtr clockFxn, xdc_UInt timeout, const ti_sysbios_knl_Clock_Params *__prms );