Part Number: TMS320C5545
Other Parts Discussed in Thread: CC8530, TMS320C5515, TMS320C5505, TMS320C5504, TMS320C5514, TMS320C5535
Tool/software: Code Composer Studio
Hi
I'm try to communicate C5545 DSP with CC8530 through I2S in my system.
Actually, I refered C55 Example Code ;CSL_I2S_DMAExample_out'(C:\ti\c55_lp\c55_csl_3.08\ccs_v6.x_examples\i2s\CSL_I2S_DMAExample)
But it made some problem. ( In csl_general.h, there are some defines such as ..
((((
#ifndef CHIP_C5517
/* TMS320C5505 and TMS320C5515 */
#define CHIP_C5505_C5515
/** TMS320C5504 and TMS320C5514 */
//#define CHIP_C5504_C5514
#if ((!defined(CHIP_C5505_C5515))&&(!defined(CHIP_C5504_C5514)))
/* TMS320C5535 or TMS320C5545 */
#define CHIP_C5535
#if (!defined(CHIP_C5535))
#define CHIP_C5545
#endif
#endif
#endif
/******************************* END OF PART2 *******************************/
/** ***************************************************************************
* -----------------------------------------------------------
* PART3: EVM VERSION MACRO DEFINITION FOR PG2.0 and PG2.1 CSL
* -----------------------------------------------------------
*
* Below macros are used to enable the source code specific to EVM versions
*/
#if (defined(CHIP_C5517))
/** Macro to define platform as C5517 */
#define C5517_EVM
#else // (!defined(CHIP_C5517))
#if (defined(CHIP_C5505_C5515)||defined(CHIP_C5504_C5514))
/** Macro to define platform as C5515 */
#define C5515_EVM
#if (!(defined(C5515_EVM)))
/** Macro to define platform as C5515 eZdsp */
#define C5515_EZDSP
#endif // !(defined(C5515_EVM))
#else // (!(defined(CHIP_C5517)||defined(CHIP_C5505_C5515)||(defined(CHIP_C5504_C5514))
#if (defined(CHIP_C5535))
/** Macro to define platform as C5535 eZdsp */
#define C5535_EZDSP
#endif
#if (!defined(C5535_EZDSP))
/** Macro to define platform as C5545 BoosterPack */
#define C5545_BSTPCK
#endif // !(defined(C5535_EZDSP))
#endif // ((defined(CHIP_C5505_C5515))||(defined(CHIP_C5504_C5514)))
#endif // (defined(CHIP_C5517))
/******************************* END OF PART3 *******************************/
#ifdef __cplusplus
}
#endif
#endif // _CSL_GENERAL_H_
)))))
But my system is custom design with C5545.
the example code can be used for C5545 ?
is there some example code for C5545?
what is this example code? (C:\ti\c55_lp\c55_csl_3.08\demos\TIesr\c5545\TIesr_C55_demo\src)
I confused what example is.
Please tell me what is my problem
thx