Part Number: TMS320F28388D
Other Parts Discussed in Thread: C2000WARE
We have a custom board and trying to get the ethernet stack up and running. Instead of supplying an external clock or XTAL, we're instead using INTOSC2 which defaults to 10MHz if I'm reading things correctly in the documentation.
We found that in the device.h file
C:\ti\C2000Ware_5_00_00_00\device_support\f2838x\common\include\device.h
There's no option in the clock setup for 10MHz. All that's there is are definitions for 20MHz or 25MHz. Nothing for INTOSC2.
//*****************************************************************************
//
// Defines related to clock configuration
//
//*****************************************************************************
#ifdef USE_20MHZ_XTAL
...snip...
#else // USE_25MHZ_XTAL
...snip...
#endif
I need help defining the symbols for INTOSC2 10MHz.
Thank You