EmbeddedRelated.com
Forums
The 2024 Embedded Online Conference

SPI clock faster than MCLK?

Started by Unknown December 1, 2009
Hi everybody,

I am working with the MSP430F16x to communicate with another device
through the SPI and I think I have an error in the clock concept. I
have look for it in the forum but I didt find the answer.

I thought that the MCLK clock and the UCLK from the SPI were
independent and the second one could be faster than the processor
clock but it is clear that I am wrong. If I set the MCLK to derive
from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
sends it twice or even three times and I get an overrun error flag. I
have seen this with the oscilloscope but I dont understand why it
happens. Could someone explain me this?

Thank you!

Beginning Microcontrollers with the MSP430

Have you seen (or heard about) Lucy's Chocolate Factory?
(One of the episodes of "I Love Lucy" around 1956.)

--- In m..., Manuel Sz wrote:
>
> Hi everybody,
>
> I am working with the MSP430F16x to communicate with another device
> through the SPI and I think I have an error in the clock concept. I
> have look for it in the forum but I did't find the answer.
>
> I thought that the MCLK clock and the UCLK from the SPI were
> independent and the second one could be faster than the processor
> clock but it is clear that I am wrong. If I set the MCLK to derive
> from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
> the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
> sends it twice or even three times and I get an overrun error flag. I
> have seen this with the oscilloscope but I don't understand why it
> happens. Could someone explain me this?
>
> Thank you!
>

To clarify what OCY is saying:

Your code/interrupt handler operate off the MCLK. So if you supply the cpu with data at 4MHz, but the CPU can only process it at 1MHz (or less), what do you think is going to happen?

-Steve

From: m... [mailto:m...] On Behalf Of old_cow_yellow
Sent: Tuesday, December 01, 2009 10:23 AM
To: m...
Subject: [msp430] Re: SPI clock faster than MCLK?

Have you seen (or heard about) Lucy's Chocolate Factory?
(One of the episodes of "I Love Lucy" around 1956.)

--- In m..., Manuel Sz wrote:
>
> Hi everybody,
>
> I am working with the MSP430F16x to communicate with another device
> through the SPI and I think I have an error in the clock concept. I
> have look for it in the forum but I did't find the answer.
>
> I thought that the MCLK clock and the UCLK from the SPI were
> independent and the second one could be faster than the processor
> clock but it is clear that I am wrong. If I set the MCLK to derive
> from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
> the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
> sends it twice or even three times and I get an overrun error flag. I
> have seen this with the oscilloscope but I don't understand why it
> happens. Could someone explain me this?
>
> Thank you!
>



Hi Steve, thanks for the answer.
I have no interrupt enabled and i don't expect the code to run at 4MHz of
course. I just thought that the MCLK was basically for instructions. I was
trying to send one byte and expect the SPI module to send it at 4MHz in
aprox. 3s, enable the interrupt flag and stop (providing that the SPI
module and the processor could be asynchronous. I guess that's a horrible
thought). In the next instruction I just check the flag and read RXBUFFER. I
already understood that the processor sets the flag and stops the
transmission.

By the way, old_cow_yellow, thank you too. that's a really helpful answer,
I'm impressed...
2009/12/1 Hayashi, Steve

> To clarify what OCY is saying:
>
> Your code/interrupt handler operate off the MCLK. So if you supply the cpu
> with data at 4MHz, but the CPU can only process it at 1MHz (or less), what
> do you think is going to happen?
>
> -Steve
>
> From: m... [mailto:
> m... ] On Behalf Of
> old_cow_yellow
> Sent: Tuesday, December 01, 2009 10:23 AM
> To: m...
> Subject: [msp430] Re: SPI clock faster than MCLK?
> Have you seen (or heard about) Lucy's Chocolate Factory?
> (One of the episodes of "I Love Lucy" around 1956.)
>
> --- In m... > msp430%40yahoogroups.com >, Manuel Sz
> wrote:
> >
> > Hi everybody,
> >
> > I am working with the MSP430F16x to communicate with another device
> > through the SPI and I think I have an error in the clock concept. I
> > have look for it in the forum but I did't find the answer.
> >
> > I thought that the MCLK clock and the UCLK from the SPI were
> > independent and the second one could be faster than the processor
> > clock but it is clear that I am wrong. If I set the MCLK to derive
> > from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
> > the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
> > sends it twice or even three times and I get an overrun error flag. I
> > have seen this with the oscilloscope but I don't understand why it
> > happens. Could someone explain me this?
> >
> > Thank you!
> >
>
>
>


I'm pretty sure it was a pie factory.

--- In m..., "old_cow_yellow" wrote:
>
> Have you seen (or heard about) Lucy's Chocolate Factory?
> (One of the episodes of "I Love Lucy" around 1956.)
>
> --- In m..., Manuel Sz wrote:
> >
> > Hi everybody,
> >
> > I am working with the MSP430F16x to communicate with another device
> > through the SPI and I think I have an error in the clock concept. I
> > have look for it in the forum but I did't find the answer.
> >
> > I thought that the MCLK clock and the UCLK from the SPI were
> > independent and the second one could be faster than the processor
> > clock but it is clear that I am wrong. If I set the MCLK to derive
> > from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
> > the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
> > sends it twice or even three times and I get an overrun error flag. I
> > have seen this with the oscilloscope but I don't understand why it
> > happens. Could someone explain me this?
> >
> > Thank you!
>

Steve,
I don't see you point. As far as I understood, for each byte the OP writes to the TXBUF he sees 2 to 3 bytes sent on the SPI bus, and he suspects the cause is in MCLK being lower than UCLK.
He isn't asking why there is an overrun error, he simply points out the fact that there is an overrun error which only confirms that more than one byte is being sent for each byte he writes.

Manuel,
You setup sound right to me. Have you checked the User's Guide and device errata?
There is always the possibility of an 'human error', as in the programming of the MSP.
After searching the errata, please post your finds. If you don't find anything, post the code you're using for SPI communication.

Also try setting MCLK to XT2/8, which is also 1MHz but synchronous to UCLK.

Regards,
Michael K.

--- In m..., "Hayashi, Steve" wrote:
>
> To clarify what OCY is saying:
>
> Your code/interrupt handler operate off the MCLK. So if you supply the cpu with data at 4MHz, but the CPU can only process it at 1MHz (or less), what do you think is going to happen?
>
> -Steve
>
> From: m... [mailto:m...] On Behalf Of old_cow_yellow
> Sent: Tuesday, December 01, 2009 10:23 AM
> To: m...
> Subject: [msp430] Re: SPI clock faster than MCLK?
>
>
>
> Have you seen (or heard about) Lucy's Chocolate Factory?
> (One of the episodes of "I Love Lucy" around 1956.)
>
> --- In m..., Manuel Sz wrote:
> >
> > Hi everybody,
> >
> > I am working with the MSP430F16x to communicate with another device
> > through the SPI and I think I have an error in the clock concept. I
> > have look for it in the forum but I did't find the answer.
> >
> > I thought that the MCLK clock and the UCLK from the SPI were
> > independent and the second one could be faster than the processor
> > clock but it is clear that I am wrong. If I set the MCLK to derive
> > from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
> > the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
> > sends it twice or even three times and I get an overrun error flag. I
> > have seen this with the oscilloscope but I don't understand why it
> > happens. Could someone explain me this?
> >
> > Thank you!
> >
>
>
>
>
>

Yes, I had misunderstood the original question thinking that he was using the MSP as an SPI slave. I tend to think of UCLK as a slave clock and ACLK & SMCLK as the master clocks.

The only things I could think of were to check to make sure that UxBR was set properly. Otherwise, it sounds like it can't transfer out of the buffer fast enough.

Thanks,
-Steve

From: m... [mailto:m...] On Behalf Of Michael
Sent: Tuesday, December 01, 2009 1:56 PM
To: m...
Subject: [msp430] Re: SPI clock faster than MCLK?

Steve,
I don't see you point. As far as I understood, for each byte the OP writes to the TXBUF he sees 2 to 3 bytes sent on the SPI bus, and he suspects the cause is in MCLK being lower than UCLK.
He isn't asking why there is an overrun error, he simply points out the fact that there is an overrun error which only confirms that more than one byte is being sent for each byte he writes.

Manuel,
You setup sound right to me. Have you checked the User's Guide and device errata?
There is always the possibility of an 'human error', as in the programming of the MSP.
After searching the errata, please post your finds. If you don't find anything, post the code you're using for SPI communication.

Also try setting MCLK to XT2/8, which is also 1MHz but synchronous to UCLK.

Regards,
Michael K.

--- In m..., "Hayashi, Steve" wrote:
>
> To clarify what OCY is saying:
>
> Your code/interrupt handler operate off the MCLK. So if you supply the cpu with data at 4MHz, but the CPU can only process it at 1MHz (or less), what do you think is going to happen?
>
> -Steve
>
> From: m... [mailto:msp4...] On Behalf Of old_cow_yellow
> Sent: Tuesday, December 01, 2009 10:23 AM
> To: m...
> Subject: [msp430] Re: SPI clock faster than MCLK?
>
> Have you seen (or heard about) Lucy's Chocolate Factory?
> (One of the episodes of "I Love Lucy" around 1956.)
>
> --- In m..., Manuel Sz wrote:
> >
> > Hi everybody,
> >
> > I am working with the MSP430F16x to communicate with another device
> > through the SPI and I think I have an error in the clock concept. I
> > have look for it in the forum but I did't find the answer.
> >
> > I thought that the MCLK clock and the UCLK from the SPI were
> > independent and the second one could be faster than the processor
> > clock but it is clear that I am wrong. If I set the MCLK to derive
> > from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
> > the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
> > sends it twice or even three times and I get an overrun error flag. I
> > have seen this with the oscilloscope but I don't understand why it
> > happens. Could someone explain me this?
> >
> > Thank you!
> >
>



Thanks Michael. That's exactly what I wanted to say :). I didn't find any
problem related to the SPI in the device errata. I will try with different
sources at the same frequency as you told, that's a good test. Then I will
post the results.

Regards,
Manuel
2009/12/1 Hayashi, Steve

> Yes, I had misunderstood the original question thinking that he was using
> the MSP as an SPI slave. I tend to think of UCLK as a slave clock and ACLK &
> SMCLK as the master clocks.
>
> The only things I could think of were to check to make sure that UxBR was
> set properly. Otherwise, it sounds like it can't transfer out of the buffer
> fast enough.
>
> Thanks,
> -Steve
>
> From: m... [mailto:
> m... ] On Behalf Of Michael
> Sent: Tuesday, December 01, 2009 1:56 PM
>
> To: m...
> Subject: [msp430] Re: SPI clock faster than MCLK?
>
> Steve,
> I don't see you point. As far as I understood, for each byte the OP writes
> to the TXBUF he sees 2 to 3 bytes sent on the SPI bus, and he suspects the
> cause is in MCLK being lower than UCLK.
> He isn't asking why there is an overrun error, he simply points out the
> fact that there is an overrun error which only confirms that more than one
> byte is being sent for each byte he writes.
>
> Manuel,
> You setup sound right to me. Have you checked the User's Guide and device
> errata?
> There is always the possibility of an 'human error', as in the programming
> of the MSP.
> After searching the errata, please post your finds. If you don't find
> anything, post the code you're using for SPI communication.
>
> Also try setting MCLK to XT2/8, which is also 1MHz but synchronous to UCLK.
>
> Regards,
> Michael K.
>
> --- In m... > msp430%40yahoogroups.com >, "Hayashi, Steve"
> wrote:
> >
> > To clarify what OCY is saying:
> >
> > Your code/interrupt handler operate off the MCLK. So if you supply the
> cpu with data at 4MHz, but the CPU can only process it at 1MHz (or less),
> what do you think is going to happen?
> >
> > -Steve
> >
> > From: m... > msp430%40yahoogroups.com > [mailto:
> m... > msp430%40yahoogroups.com >] On Behalf Of
> old_cow_yellow
>
> > Sent: Tuesday, December 01, 2009 10:23 AM
> > To: m... > msp430%40yahoogroups.com > > Subject: [msp430] Re: SPI clock faster than MCLK?
> >
> >
> >
> > Have you seen (or heard about) Lucy's Chocolate Factory?
> > (One of the episodes of "I Love Lucy" around 1956.)
> >
> > --- In m... > msp430%40yahoogroups.com > > msp430%40yahoogroups.com >, Manuel Sz
> wrote:
> > >
> > > Hi everybody,
> > >
> > > I am working with the MSP430F16x to communicate with another device
> > > through the SPI and I think I have an error in the clock concept. I
> > > have look for it in the forum but I did't find the answer.
> > >
> > > I thought that the MCLK clock and the UCLK from the SPI were
> > > independent and the second one could be faster than the processor
> > > clock but it is clear that I am wrong. If I set the MCLK to derive
> > > from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
> > > the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
> > > sends it twice or even three times and I get an overrun error flag. I
> > > have seen this with the oscilloscope but I don't understand why it
> > > happens. Could someone explain me this?
> > >
> > > Thank you!
> > >
> >
> >
> >
> >
> >
>
>
>


Hi,

I have made the test. With U0BR0 = 4 or = 8 I found no problem with the
communication, but when I set the U0BR0 to 2 then the SPI module sends the
same byte twice.

I am working with the MSP430F1611. I checked the MCLK clock and it is
working at 1.2MHz. I've got some png files from the oscilloscope. I've read
somewhere that I am not allowed to attach pics here. Where could I upload
them?

Here is the code:

// Stop watchdog timer to prevent time out reset
WDTCTL = WDTPW + WDTHOLD;

DCOCTL = 0x60; // DCO set to 3
BCSCTL1 = 0x03; // RSEL set to 3
BCSCTL2 = 0;

do {
BCSCTL1 &= ~BIT7; //switch quartz to on
IFG1 &= ~OFIFG; //reset status register - 0 when quartz is stable
for (char i=0xff; i;i--) {__no_operation();};
}while (IFG1 & OFIFG);

BCSCTL2 = (BIT3 | BIT0); //enable DCO as MCLK source; Enable external
quartz as SMCLK; External resistor for DCO
P2SEL = BIT5; //External resistor for DCO stabilization
P2DIR = ~BIT6;
P2OUT = 0;
P2IE = 0;

P3OUT = 0;
P3DIR = ~(BIT2); //All output except SPI (SOMI)
P3SEL = (BIT1 | BIT2 | BIT3); // SPI
//////////////////////////////////////////////////////////////
/// Configure SPI hardware for proper operation
////////////////////////////////////////////////////
U0CTL = SWRST;
U0CTL |= CHAR | SYNC | MM;
U0TCTL = 0x30 | CKPL | STC; //3 pin SPI mode, SMCLK
U0BR1 = 0;
U0BR0 = 8;
U0MCTL = 0;

//In radio transceiver P_ON state the digital pins are pulled up/down
//It is important to set up the pins before initiate the device
//Pag. 7 doc
RF_SET_RESET_LOW();
RF_SET_SLP_TR_LOW();
RF_SET_CS_HIGH();

RF_SLP_DIR_PORT |= RF_SLP_TR_BIT;
_RF_CS_DIR_PORT |= _RF_CS_BIT;

RF_SET_RESET_HIGH();

for(int i = 0; i < 0xFFFF; i++);

ME1 |= USPIE0;
U0CTL &= ~SWRST;

unsigned char addr;
addr = 0x82;

while( (U0TCTL & TXEPT) != TXEPT); //waits until buffer and shift
register are ready

RF_SET_CS_LOW();
U0TXBUF = addr;

while( (U0TCTL & TXEPT) != TXEPT); //waits until buffer and shift
register are ready
RF_SET_CS_HIGH();

Regards,
Manuel
2009/12/2 Manuel Sz

> Thanks Michael. That's exactly what I wanted to say :). I didn't find any
> problem related to the SPI in the device errata. I will try with different
> sources at the same frequency as you told, that's a good test. Then I will
> post the results.
>
> Regards,
> Manuel
> 2009/12/1 Hayashi, Steve > Yes, I had misunderstood the original question thinking that he was using
>> the MSP as an SPI slave. I tend to think of UCLK as a slave clock and ACLK &
>> SMCLK as the master clocks.
>> The only things I could think of were to check to make sure that UxBR was
>> set properly. Otherwise, it sounds like it can't transfer out of the buffer
>> fast enough.
>>
>> Thanks,
>> -Steve
>>
>> From: m... [mailto:
>> m... ] On Behalf Of Michael
>> Sent: Tuesday, December 01, 2009 1:56 PM
>>
>> To: m...
>> Subject: [msp430] Re: SPI clock faster than MCLK?
>>
>> Steve,
>> I don't see you point. As far as I understood, for each byte the OP writes
>> to the TXBUF he sees 2 to 3 bytes sent on the SPI bus, and he suspects the
>> cause is in MCLK being lower than UCLK.
>> He isn't asking why there is an overrun error, he simply points out the
>> fact that there is an overrun error which only confirms that more than one
>> byte is being sent for each byte he writes.
>>
>> Manuel,
>> You setup sound right to me. Have you checked the User's Guide and device
>> errata?
>> There is always the possibility of an 'human error', as in the programming
>> of the MSP.
>> After searching the errata, please post your finds. If you don't find
>> anything, post the code you're using for SPI communication.
>>
>> Also try setting MCLK to XT2/8, which is also 1MHz but synchronous to
>> UCLK.
>>
>> Regards,
>> Michael K.
>>
>> --- In m... >> msp430%40yahoogroups.com >, "Hayashi, Steve"
>> wrote:
>> >
>> > To clarify what OCY is saying:
>> >
>> > Your code/interrupt handler operate off the MCLK. So if you supply the
>> cpu with data at 4MHz, but the CPU can only process it at 1MHz (or less),
>> what do you think is going to happen?
>> >
>> > -Steve
>> >
>> > From: m... >> msp430%40yahoogroups.com > [mailto:
>> m... >> msp430%40yahoogroups.com >] On Behalf Of
>> old_cow_yellow
>>
>> > Sent: Tuesday, December 01, 2009 10:23 AM
>> > To: m... >> msp430%40yahoogroups.com > > Subject: [msp430] Re: SPI clock faster than MCLK?
>> >
>> >
>> >
>> > Have you seen (or heard about) Lucy's Chocolate Factory?
>> > (One of the episodes of "I Love Lucy" around 1956.)
>> >
>> > --- In m... >> msp430%40yahoogroups.com > >> msp430%40yahoogroups.com >, Manuel Sz
>> wrote:
>> > >
>> > > Hi everybody,
>> > >
>> > > I am working with the MSP430F16x to communicate with another device
>> > > through the SPI and I think I have an error in the clock concept. I
>> > > have look for it in the forum but I did't find the answer.
>> > >
>> > > I thought that the MCLK clock and the UCLK from the SPI were
>> > > independent and the second one could be faster than the processor
>> > > clock but it is clear that I am wrong. If I set the MCLK to derive
>> > > from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
>> > > the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
>> > > sends it twice or even three times and I get an overrun error flag. I
>> > > have seen this with the oscilloscope but I don't understand why it
>> > > happens. Could someone explain me this?
>> > >
>> > > Thank you!
>> > >
>> >
>> >
>> >
>> >
>> >
>>
>>
>>
>>
>>


Hi,

here are the pics.

1) This is with the MCLK sourced from the DCO at 1.2MHz. The UCLK is 1/8
from the XT2 = 1MHz
http://img694.imageshack.us/i/mclkdcospisclk82.png/

2) Then I changed the code to rise the CS before checking the flag in order
to compare with faster transmission. This is the result:
http://img109.imageshack.us/i/mclkdcospisclk8.png/

3) This is with the UCLK 1/4 XT2 = 2 MHZ. UCLK is faster than MCLK but not
enough to send two bytes
http://img140.imageshack.us/i/mclkdcospisclk4.png/

4) This is with the UCLK 1/2 XT2 = 4 MHZ. Here we can see the two bytes
transmitted:
http://img109.imageshack.us/i/mclkdcospisclk2.png/

What do you think? Am I doing something wrong or could it be a hardware
problem?

Regards,
Manuel

2009/12/2 Manuel Sz

> Hi,
>
> I have made the test. With U0BR0 = 4 or = 8 I found no problem with the
> communication, but when I set the U0BR0 to 2 then the SPI module sends the
> same byte twice.
>
> I am working with the MSP430F1611. I checked the MCLK clock and it is
> working at 1.2MHz. I've got some png files from the oscilloscope. I've read
> somewhere that I am not allowed to attach pics here. Where could I upload
> them?
>
> Here is the code:
>
> // Stop watchdog timer to prevent time out reset
> WDTCTL = WDTPW + WDTHOLD;
>
> DCOCTL = 0x60; // DCO set to 3
> BCSCTL1 = 0x03; // RSEL set to 3
> BCSCTL2 = 0;
>
> do {
> BCSCTL1 &= ~BIT7; //switch quartz to on
> IFG1 &= ~OFIFG; //reset status register - 0 when quartz is stable
> for (char i=0xff; i;i--) {__no_operation();};
> }while (IFG1 & OFIFG);
>
> BCSCTL2 = (BIT3 | BIT0); //enable DCO as MCLK source; Enable external
> quartz as SMCLK; External resistor for DCO
> P2SEL = BIT5; //External resistor for DCO stabilization
> P2DIR = ~BIT6;
> P2OUT = 0;
> P2IE = 0;
>
> P3OUT = 0;
> P3DIR = ~(BIT2); //All output except SPI (SOMI)
> P3SEL = (BIT1 | BIT2 | BIT3); // SPI
> //////////////////////////////////////////////////////////////
> /// Configure SPI hardware for proper operation
> ////////////////////////////////////////////////////
> U0CTL = SWRST;
> U0CTL |= CHAR | SYNC | MM;
> U0TCTL = 0x30 | CKPL | STC; //3 pin SPI mode, SMCLK
> U0BR1 = 0;
> U0BR0 = 8;
> U0MCTL = 0;
>
> //In radio transceiver P_ON state the digital pins are pulled up/down
> //It is important to set up the pins before initiate the device
> //Pag. 7 doc
> RF_SET_RESET_LOW();
> RF_SET_SLP_TR_LOW();
> RF_SET_CS_HIGH();
>
> RF_SLP_DIR_PORT |= RF_SLP_TR_BIT;
> _RF_CS_DIR_PORT |= _RF_CS_BIT;
>
> RF_SET_RESET_HIGH();
>
> for(int i = 0; i < 0xFFFF; i++);
>
> ME1 |= USPIE0;
> U0CTL &= ~SWRST;
>
> unsigned char addr;
> addr = 0x82;
>
> while( (U0TCTL & TXEPT) != TXEPT); //waits until buffer and shift
> register are ready
>
> RF_SET_CS_LOW();
> U0TXBUF = addr;
>
> while( (U0TCTL & TXEPT) != TXEPT); //waits until buffer and shift
> register are ready
> RF_SET_CS_HIGH();
>
> Regards,
> Manuel
> 2009/12/2 Manuel Sz Thanks Michael. That's exactly what I wanted to say :). I didn't find any
>> problem related to the SPI in the device errata. I will try with
>> different sources at the same frequency as you told, that's a good test.
>> Then I will post the results.
>>
>> Regards,
>> Manuel
>> 2009/12/1 Hayashi, Steve
>>
>>>
>>>
>>> Yes, I had misunderstood the original question thinking that he was using
>>> the MSP as an SPI slave. I tend to think of UCLK as a slave clock and ACLK &
>>> SMCLK as the master clocks.
>>>
>>>
>>> The only things I could think of were to check to make sure that UxBR was
>>> set properly. Otherwise, it sounds like it can't transfer out of the buffer
>>> fast enough.
>>>
>>> Thanks,
>>> -Steve
>>>
>>> From: m... [mailto:
>>> m... ] On Behalf Of Michael
>>> Sent: Tuesday, December 01, 2009 1:56 PM
>>>
>>> To: m...
>>> Subject: [msp430] Re: SPI clock faster than MCLK?
>>>
>>> Steve,
>>> I don't see you point. As far as I understood, for each byte the OP
>>> writes to the TXBUF he sees 2 to 3 bytes sent on the SPI bus, and he
>>> suspects the cause is in MCLK being lower than UCLK.
>>> He isn't asking why there is an overrun error, he simply points out the
>>> fact that there is an overrun error which only confirms that more than one
>>> byte is being sent for each byte he writes.
>>>
>>> Manuel,
>>> You setup sound right to me. Have you checked the User's Guide and device
>>> errata?
>>> There is always the possibility of an 'human error', as in the
>>> programming of the MSP.
>>> After searching the errata, please post your finds. If you don't find
>>> anything, post the code you're using for SPI communication.
>>>
>>> Also try setting MCLK to XT2/8, which is also 1MHz but synchronous to
>>> UCLK.
>>>
>>> Regards,
>>> Michael K.
>>>
>>> --- In m... >>> msp430%40yahoogroups.com >, "Hayashi, Steve"
>>> wrote:
>>> >
>>> > To clarify what OCY is saying:
>>> >
>>> > Your code/interrupt handler operate off the MCLK. So if you supply the
>>> cpu with data at 4MHz, but the CPU can only process it at 1MHz (or less),
>>> what do you think is going to happen?
>>> >
>>> > -Steve
>>> >
>>> > From: m... >>> msp430%40yahoogroups.com > [mailto:
>>> m... >>> msp430%40yahoogroups.com >] On Behalf Of
>>> old_cow_yellow
>>>
>>> > Sent: Tuesday, December 01, 2009 10:23 AM
>>> > To: m... >>> msp430%40yahoogroups.com >
>>>
>>> > Subject: [msp430] Re: SPI clock faster than MCLK?
>>> >
>>> >
>>> >
>>> > Have you seen (or heard about) Lucy's Chocolate Factory?
>>> > (One of the episodes of "I Love Lucy" around 1956.)
>>> >
>>> > --- In m... >>> msp430%40yahoogroups.com > >>> msp430%40yahoogroups.com >, Manuel Sz
>>> wrote:
>>> > >
>>> > > Hi everybody,
>>> > >
>>> > > I am working with the MSP430F16x to communicate with another device
>>> > > through the SPI and I think I have an error in the clock concept. I
>>> > > have look for it in the forum but I did't find the answer.
>>> > >
>>> > > I thought that the MCLK clock and the UCLK from the SPI were
>>> > > independent and the second one could be faster than the processor
>>> > > clock but it is clear that I am wrong. If I set the MCLK to derive
>>> > > from the DCO (~1MHz) and the UCLK is half of the SMCLK (sourced from
>>> > > the 8MHz XT2), for each byte I write in the Tx buffer, the SPI module
>>> > > sends it twice or even three times and I get an overrun error flag. I
>>> > > have seen this with the oscilloscope but I don't understand why it
>>> > > happens. Could someone explain me this?
>>> > >
>>> > > Thank you!
>>> > >
>>> >
>>> >
>>> >
>>> >
>>> >
>>>
>>>
>>>
>>>
>>




The 2024 Embedded Online Conference