Part Number: MSP430F5529
Other Parts Discussed in Thread: MSP430WARE,
My customer is using MSP430F552x , they have raised the follow query -
1. We are using Thru' Hole 24MHz crystal on XT2IN and XT2OUT to use XT2CLK as clock source for our application including USB.
2. Now to run at lower frequency (MCLK, SMCLK,ACLK) i.e 12 MHZ , we internally divided the clock by 2.
In source code we configured the clock as under:
UCSCTL4 |= 0x0555; // SMCLK=MCLK=XT2
UCSCTL5 = DIVM__2 + DIVS__2 + DIVA__2; // CPU Freq : 12.0 MHz
and for USB Clock we did :
#define USB_CRYSTAL_X2 24000000UL
UCS_setExternalClockSource (0, USB_CRYSTAL_X2);
With this requirement and configuration we need to get confirmation;
a. whether USB Factory boot loader will work
b. USB application (CDC class ) can function.
c. Our normal application code function
If the above is possible, then what more configuration we need to do.Please provide us the configuration code to do the same.
