Part Number: MSP430F2132
Tool/software: Code Composer Studio
I have a project posted up by the University of Washington for some RFID firmware on the MSP430F2132.
WISP - WISPFirmare
This is wonderful code, I love it! But it makes convenient…
this port has been configured as an analog input to ADC10. Analog source is a NTC which has a max. value of up to 450k in series with about 20k connected to ground. High Side is connected to the internal Ref voltage of 2.5V - after the NTC we connect…
Try adding -mmcu=msp430f2132 as a linker configuration option too.
If that doesn't work, try forcing the architecture with -mcpu=msp430 linker configuration option.
Best regards,
Peppe
Other Parts Discussed in Thread: MSP430F2132 , MSP430G2152 I have been trying to re-run the DCO calibration on an MSP430F2132 to replace the values in an accidentally erased info flash section.
I started by trying the MSP430F20xx Demo - DCO Calibration…
Other Parts Discussed in Thread: MSP430F2132 I am the beginner of MSP430F2132 uC. Please guide me on programming with respective material and coding examples.
In your I2C_Init() function, change the line from: UCB0I2CSA = 0x48 >> 1 ; to: UCB0I2CSA = 0x49; // TMP112 datasheet gives 7-bit address, so no shift, ADD0 connected to VCC
It's a legacy design I need to mod, that's why.
I'll probably eventually dump this and go with FRAM MSP430 or something else.
But, for now, I'm working with the MSP430F2132.
Want something with sample code, etc.
Hi,
Piotr Bojda said:
I have to measure working time of the device in sec. To do this, I use a TimerA1 interrupt triggered with 1ms intervals. I increase some variable, and when it is equal 1000 (1s) I update working time. Unfortunately, I have noted…
Other Parts Discussed in Thread: MSP430F2132 Hi all,
I'm using MSP430F2132 for on of my project and i need to monitor my battery , i checked the data sheet and its say someting about Comparator_A+:
"
The primary function of the comparator_A+ module…
Brian Boorman said: It also shows a read transaction from register 0
The operation is a read operation, it shows receiving of a 0x00 data byte. No information where it comes from, no reference to 'register 0'. it just shows that a data byte of 0x00…