Other Parts Discussed in Thread: MSP430F5510, MSP430F5659
Hi
I'm using an MSP430f5635 and I want to use the BSL via USB.
I have to made some changes because my XT2 Crytall Frequenzy is on 16 MHz.
So 1. Question : Which source File do I have to use for changing Frequenzies and other device informations (& what other informations do I have to change or to replace )
2. : I want to start the BSL out of an application with the given code out of SLAU319L :
__disable_interrupt();
USBKEYPID = 0x9628; // Unlock USB configuration registers
USBCNF &= ~PUR_EN; // Set PUR pin to hi-Z, logically disconnect from host
USBPWRCTL &= ~VBOFFIE; // Disable VUSBoff interrupt
USBKEYPID = 0x9600; // Lock USB configuration register
__delay_cycles(500000);
((void (*)())0x1000)(); // Call BSL
Do I have to Take care of something else in my main programm or should it work like this?
cheers, Andi