Part Number: MSP430F2416 Tool/software: I’m running with a MSP430F2416, and I’m experiencing an unexpected reset of the part. The time for the unexpected reset to occur varies greatly from test to test without changing any input parameters. It can take…
Part Number: MSP430F2416 Hi
We are using an msp430f2416 processor in our project i had loaded the bootloader firmware in to RAM. even after the power recycle the bootloader firmware still retains on the RAM memory.
so i could not understand how the…
Part Number: MSP430F2416 Other Parts Discussed in Thread: MSP430FR5962 Hi,
what is the naming convention for the MSP controllers what is mean by the "F" in MSP430F and "FR" in the MSP430FR5962 controllers?
Part Number: MSP430F2416 Hello,
What's the maximum current the output pins can source? I have an output driving the gate of 9 transistors to allow my bleed resistors to turn on (with a 10k pull-down) and I'd like to be sure I can actually drive it high…
> retValue = (SPI_Rx_buff4|(SPI_Rx_buff3<<8)|(SPI_Rx_buff2<<16));
My first guess is that SPI_Rx_buffX are declared uint8_t (or unsigned char), so they're not surviving the shifts. Try:
> retValue = ((unsigned long)SPI_Rx_buff4|((unsigned long)SPI_Rx_buff3…
Part Number: MSP430F2416 Other Parts Discussed in Thread: HDC1080
I am trying to read a humidity sensor. The TI HDC1080 would be a great approximation. I am trying to use interrupts, but would settle for anything now. My starting point is example code…
Part Number: MSP430F2416 Other Parts Discussed in Thread: ADS1292 , ENERGYTRACE Hi all,
I am working on a prototype which has MSP4302416 micro controller ADS1292 analog front end,number of capacitors and resistors of various values,Low dropout voltage…
Part Number: MSP430F2416 Hi all,
As far as my understanding about Interrupt latency is " The time taken to execute the ISR from the time of interrupt occurs and we can't reduce this time period". Is this correct?
Does anyone else have any idea to…
Hi James,
So far we always had button 'X' which goes bad, though hardware event of pressing button 'X' is very clean. But recently we have another button 'Y' showing the same symptoms instead of the button 'X'.
I tried to sniff check sum using the…