Part Number: MSP430F6438 Other Parts Discussed in Thread: MSP430F6436 , MSP430F6435 , MSP430F6433 Hi,
The MSP430F643x series in the 100-pin PZ package comes in four variants
- MSP430F6438 (256kB Flash + DAC)
- MSP430F6436 (128kB Flash + DAC)
…
This code does not attempt to initialize XT1. Anyway, there are example programs (for both raw register accesses, and driverlib) that show how this is to be done.
When XT1 does not run, the clock system uses REFO instead (which has looser tolerances…
Other Parts Discussed in Thread: MSP430F6438 Hi,
I am working with the MSP430F6438 and I am developing a UART which uses an external clock at 32kHz. I need my UART to be configured as follows:
1200 baud rate, 1 start bit, 8 data bits, 1 odd parity…
Yes, we found a solution that works for us. I have forgotten a few of the details but the code below is run at startup in our system:
RTCPS1CTL = RT1IP__4 | RT1PSIE; //divide by 4 (32Hz), interrupt enabled RTCCTL1 &= ~RTCHOLD_H; //RTCHOLD = 0 to make…
Hi Clemens Ladisch,
Thanks for your replay.
Is there some difference with other MCU. For normal MCU should get OSC before MCU be programmed code by JTAG.
I found the OSC did not work because the JTAG interface did not works.
If the MCU have not…
I receive the BLE data in GATT_ServerEventCallback and case etGATT_Server_Write_Request :
switch(AttributeOffset) {
case SPPLE_Handshake_CHARACTERISTIC_ATTRIBUTE_OFFSET: switch(Command[0]) {
case(Start): //Start command 0x01
state = 1;
while…