This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320C6455: C55X sin look up table

Part Number: TMS320C6455
Other Parts Discussed in Thread: TMS320C5517,

Hi Dan,

I Try Calculate sin (2*PI*n / N) https://e2e.ti.com/support/dsp/tms320c6000_high_performance_dsps/f/112/t/125279 but result incorrect as table below

const unsigned short sine_750Hz_48kHzFs[64] =
{
0x0000,0x8c0c,0xf918,0x2825,0xfb30,0x563c,0x1c47,0x3351,
0x825a,0xf162,0x6d6a,0xe270,0x4176,0x7c7a,0x897d,0x617f,
0xff7f,0x617f,0x897d,0x7c7a,0x4176,0xe270,0x6d6a,0xf162,
0x825a,0x3351,0x1c47,0x563c,0xfb30,0x2825,0xf918,0x8c0c,
0x0000,0x74f3,0x07e7,0xd8da,0x05cf,0xaac3,0xe4b8,0xcdae,
0x7ea5,0x0f9d,0x9395,0x1e8f,0xbf89,0x8485,0x7782,0x9f80,
0x0180,0x9f80,0x7782,0x8485,0xbf89,0x1e8f,0x9395,0x0f9d,
0x7ea5,0xcdae,0xe4b8,0xaac3,0x05cf,0xd8da,0x07e7,0x74f3
};

( I am use KIT TMS320C5517)

maybe help me formula Calculate  have result correct as table below.

const unsigned short sine_750Hz_48kHzFs[64] =
{
0x0000,0x8c0c,0xf918,0x2825,0xfb30,0x563c,0x1c47,0x3351,
0x825a,0xf162,0x6d6a,0xe270,0x4176,0x7c7a,0x897d,0x617f,
0xff7f,0x617f,0x897d,0x7c7a,0x4176,0xe270,0x6d6a,0xf162,
0x825a,0x3351,0x1c47,0x563c,0xfb30,0x2825,0xf918,0x8c0c,
0x0000,0x74f3,0x07e7,0xd8da,0x05cf,0xaac3,0xe4b8,0xcdae,
0x7ea5,0x0f9d,0x9395,0x1e8f,0xbf89,0x8485,0x7782,0x9f80,
0x0180,0x9f80,0x7782,0x8485,0xbf89,0x1e8f,0x9395,0x0f9d,
0x7ea5,0xcdae,0xe4b8,0xaac3,0x05cf,0xd8da,0x07e7,0x74f3
};

Thanks & Regards.

Nguyen