Part Number: MSP430G2432 hi,
Per descrption of DS, we can set the Flash timing to 476kHz as the maximum speed, if in this case, when i read one byte from information memory, how long will it take? (1/476000)*8 sec?
Part Number: MSP430G2432 Hi All,
I have an application where I have two PWM outputs which are compliments of one another (i.e. when one is 25% the other is 75%). I am using timer A to generate both signals (there is only one timer on this chip). The…
Hi James and All,
The problem is fixed!
I had two issues.
1) The channel bits in the ADC10CTL1 register will not change unless ENC in ADC10CTL0 = 0. So I added this.
ADC10CTL0 &= ~ENC;
2) My logic on choosing the channel was wrong. Just or-ing…
Other Parts Discussed in Thread: MSP430G2432 Just installed CCSv6 (previously had CCSv5.X). I now have a problem trying to create a new Grace project for
a MSP430G2432 target. I have all the latest updates for CCSv6. The host is running Windows 8.1…
Other Parts Discussed in Thread: MSP430G2432 , MSP430G2553 Hi,
I'm still fighting with the SPI interface. I have read in the MSP430x2xx Users Guide that there are the USCI A0 and B0 registers. I have found a example code which uses the status register…
Other Parts Discussed in Thread: MSP430G2432 Hi,
Im using the Grace code generator to configure my MSP430G2432. I dont quite understand the note that "configuring the flash controller is only needed in case of using in-system application self-programming…
Other Parts Discussed in Thread: MSP430G2432 Hello,
I'm using the MSP430G2432 as host controller for two SPI slaves. I have checked the entire Users guide and datasheets but I still haven't found out how to select the slave devices. Which pin (GPIO…
Other Parts Discussed in Thread: MSP430G2432 Hi together,
I'm trying to write a driver function for the SPI interface of MSP430G2432 according to the following pseudo code:
void mcu_spi_read(uint8_t num_bytes, uint8_t addr, uint8_t * data); void mcu_spi_write…
Other Parts Discussed in Thread: MSP430G2230 , MSP430G2432 , LM3S6965 Hi all,
I have been trying to implement some code that takes a reading from the ADC10 on the MSP430 (Slave) and then transmits this over I2C to a Stellaris (Master).
The problem…
Hi zrno,
Thanks for your quick reply.
Currently i am flashing my code through MSP-FET430UIF (MSP430 USB debug interface) which supports both JTAG and SBW.
Now i don't want to load code through any devices and i want to load binary through application…