Mikrocontroller-Familie
Texas Instruments maschinell erzeugt
Im Forum und im Wiki
-
Thread
math.h (linker) problem.
compile with the log function included. if I comment it out, it compiles. The error message is: msp430-make all msp430-gcc -mmcu=msp430x169 -O1 -c temperature.c msp430-gcc -mmcu=msp430x169 -lm -o TempTest.elf main.o temperature.o init.o temperature.o: In function `buildTemperatureValue':
Try moving -lm to the end of the command line: msp430-gcc -mmcu=msp430x169 -o TempTest.elf main.o temperature.o -lm
-
Thread
nsec-resolution time measurement with MSP430 or alternatives ?
between two pulses with a resolution of <10nsecs, using a cheap microcontroller. I know some MSP430 parts (MSP430F51x1) include the Timer D which allows a resolution of 4ns, but I do not know of any development kit available. Anybody has experience with this processor or knows of some other uC
cope with high resolution capture timer (less than 10nsec): - STM32F405 as suggested above - MSP430F5172 http://www.ti.com/product/MSP430F5172/datasheet/specifications#SLAS6194794 Regards, Juan.
-
Article
MSP430
Dev-C++ Entwicklungsumgebung msp430-gdb und Eclipse - Eine Anleitung von Chris Liechti MSP430 GPS - MSP430 Puls-Oximeter MSP430 Forum MSPGCC + Eclipse + msp430-gdbproxy / Linux / Debian / Ubuntu - Anleitung / Tutorial zur Installation
MSP430 News und Forum (en) Beispielvideo - by JL (God of Mathfire) openMSP430 - MSP430 als Softcore im FPGA (Verilog) NEO430 - sehr kleines MSP430-kompatibles SoC als Softcore im FPGA (VHDL) Bezugsquellen
-
Thread
I2C interface msp430
hi, which msp430 and wich sensor do you think about? there are many examples for the msp430 as an i2c master on the ti pages.
For how to write and read over I²C, see the files MSP430F55xx_uscib0_i2c_08.c and MSP430F55xx_uscib0_i2c_10.c in the MSP430F5529 example code package.
-
Article
MSP430 eclipse helios mspgcc4 gdb-proxy
Vorcompilierte Pakete gibt es allerdings für Windows, Debian/Ubuntu Linux via sudo apt-get install binutils-msp430 gcc-msp430 msp430-libc gdb-msp430 msp430mcu Zur Installation genügt das entzippen in einen beliebigen Ordner, z.B. C:\MSP430\mspgcc mspdebug installieren. Beachte: Falls du Probleme mit mspdebug hast
\MSP430\mspdebug mspdebug --allow-fw-update tilib via msp430-gdbproxy: cd L:\Programme\MSP430\MSPGCC4\bin msp430-gdbproxy msp430 --update-usb-fet TIUSB Eclipse 3.7 (Indigo) mit CDT (C/C++) installieren, einrichten
-
Article
MSPGCC
shared -m32 Weiter geht's: $ make $ mv libHIL.so /usr/local/lib $ ldconfig $ cd ../.. gdbproxy. Den msp430-gdbproxy und libMSP430.so von herunterladen. Danach $ chmod +x msp430-gdbproxy $ mv msp430-gdbproxy /usr/local/msp430/bin/ $ mv libMSP430.so /usr/local/lib/ ausführen. Installations-Skript. Für Installation
Ansonsten die Anleitung für Linux befolgen. Einfaches C-Beispielprogramm. Sourcecode. Sourcecode für msp430x1121 kompilieren. $ msp430-gcc -Os -mmcu=msp430x1121 -o test.elf test.c Sourcecode für msp430x1121 kompilieren, wenn math.h includiert wird. msp430-gcc -Os -mmcu=msp430x1121 -o test.elf test.c -lm