/* * ======== fwkPort.h ======== */ #ifndef _FWK_PORT_H_ #define _FWK_PORT_H_ #include #include #include // ------------------------------------- // // Below is temporary for framework port // // ------------------------------------- // // SYS/BIOS 6.45 LOG APIs are different than BIOS 6.21 // log.h -- replacements #define LOG_Obj LoggerBuf_Struct #define LOG_disable(a) #define LOG_printf(...) // Not defined in SYS/BIOS 6.45 // sys.h -- extracted defs #define SYS_OK 0 /* no error */ // packages/ti/bios/include/sys.h #define SYS_EALLOC 1 /* memory allocation error */ // packages/ti/bios/include/sys.h // 1st parameter for audioStream1Task(). // SYS/BIOS 6.45 doesn't allow more than 2 parameters for a task. extern Int gBetaPrimeValue; //extern LOG_Obj trace; #endif /* _FWK_PORT_H_ */