Our project is moving along. ADC_12A work has been productive. No surprises. Next step is to move on to using the ADC_24B in the MSP430F6736A. Anyone with...
50766
User Gripen
gripen_fighters
Jun 9, 2012 6:04 pm
I am using F6736 for metering projects but I am not sure if it has ADC24, I know only SD24 which is a sigma-delta. ________________________________ From:...
50767
lslonim2
Jun 9, 2012 8:42 pm
Hi, I develop for the MSP430F5418A using IAR, and the TI USB programmer box works fine in that environment. We tried to use the Elprotronic free software with...
50768
Bill Knight
wmk6341
Jun 9, 2012 11:48 pm
You might have a look at the free Olimex *MSP430-PROGRAMMER *GUI software that uses their *MSP430-JTAG-TINY* USB-JTAG pod.. There is also a command line...
50769
Reginald Beardsley
pulaskite
Jun 10, 2012 12:36 am
Why not mspdebug? http://mspdebug.sourceforge.net/...
50770
Steve Mayfield
stevemayfiel...
Jun 10, 2012 1:34 am
We use both for development with the 1611 and 5438A. The only thing I had problems with are the libraries that came with the Elprotronic software were newer...
50771
Blakely
blakely.lacroix
Jun 10, 2012 1:59 pm
We use the Elprotronic free software with the TI USB JTAG programmer and it works well. We did the firmware upgrades to bring it to the latest level which it...
50772
holinepu@...
holinepu
Jun 11, 2012 3:03 am
I'm a Junior Programmer (waiting for my MSP430 LaunchPad kit), but I'm not an expert in Electronics....
50773
tduffyanderson
Jun 11, 2012 4:56 pm
We use the smartRF software that TI provides, we'd originally downloaded it for programming a cc2530 chip, but it also does MSP430 devices. Not sure if it...
50774
bluebee2010
Jun 12, 2012 5:53 am
Hi Junior Programmer, The simplest way to communicate with the LaunchPad is using the LaunchPad UART. You can send and receive data using the USB virtual COM...
50775
Wade
warm38spl
Jun 12, 2012 6:40 pm
I have a application request to "look into" hard work part turn on 50-500 times per sec on for 25 microSeconds doing stuff turn back off easy work part while...
50776
Matthias Weingart
gmane@...
Jun 13, 2012 12:33 pm
... What stuff is done in 25us? All the other is possible with almost any MSP, power requirement some microamps in average. M....
50777
Onestone
onestone_apc
Jun 13, 2012 1:46 pm
If you aren't able to figure oput this simple task how are you able to define what is hard and what is easy? How do you know that the 'on' time will be...
50778
Jon Kirwan
jondkirwan
Jun 14, 2012 4:29 am
... Hi, Paul. Just spend the last half year getting more fully familiar with C++11 lambdas, and also as implemented in Microsoft's C#, VB.NET, and F# (still...
50779
Matthias Weingart
gmane@...
Jun 14, 2012 6:34 am
... Don't forget the examples. I think the Timer examples are showing how to solve some of his tasks. M....
50780
Paul Curtis
paul_l_curtis
Jun 14, 2012 8:31 am
Hi Jon, ... Every programmer should know more than just a single algorithmic programming language if they care about their craft. ... I'm sure the classes, and...
50782
Jon Kirwan
jondkirwan
Jun 14, 2012 4:47 pm
... Most aren't exposed. I was exposed 20 years ago and fell in love with the concept. ... A lot of "helper" classes. Basically, wrapping up elevated data that...
50783
Paul Curtis
paul_l_curtis
Jun 14, 2012 5:23 pm
... This is more important for me at the moment: 10 ' Graphical demonstration of calibrating a magnetometer. 20 ' 30 ' Written by Paul Curtis, Rowley...
50784
Jon Kirwan
jondkirwan
Jun 14, 2012 6:27 pm
... Hehe. I suspect EVERYTHING is more important to you. Including trimming your nails. ;) But if I seem to benefit from lambdas so much, I can only imagine...
50785
David Brown
davidbrown563
Jun 15, 2012 7:06 am
... gcc supported C++ lambdas from version 4.5: <http://gcc.gnu.org/gcc-4.5/changes.html> For more complete C++11 status: ...
50786
Jon Kirwan
jondkirwan
Jun 15, 2012 4:36 pm
... Thanks, David. I thought I'd read that 4.7 had it, as I mentioned. Per your web link on the status, I see that delegating constructors are present, too....
50787
spacejuggernaut
Jun 15, 2012 9:01 pm
I've been using the MSP430G2553 LaunchPad for a number of projects, but realized I ran out of IO ports. Future projects: 6 digit 7 Segment display with up to 8...
50788
Meir Shahar
meiriko
Jun 15, 2012 9:50 pm
If the 32 pins count comes from the 7 segment, you can reduce the number of pins to 2 (or 3) by using a led driver. One example is Maxim's drivers: ...
50789
bluebee2010
Jun 15, 2012 9:58 pm
What about the MSP-EXP430FR5739 Experimenter Board? It has 32 I/Os, 16Ch 10-Bit ADC12, 8 Display LED's, 3 axis accelerometer, NTC Thermistor, 2 User input...
50790
Mr.
spacejuggernaut
Jun 16, 2012 3:25 am
Hello Dirk That's it, I didn't know the MSP-EXP430FR5739 Experimenter Board existed, when I checked out TI's EStore I only saw the MSP430FG4618/F2013...
50791
Onestone
onestone_apc
Jun 16, 2012 3:47 am
By the time you've saved a few pins and added a few shift registers to fan out the existing I/O you've wasted more money on extra parts, larger PCbs etc than...
50792
Onestone
onestone_apc
Jun 16, 2012 3:53 am
Rather than mess with a DSP why not a simple set of bandpass IIR filters on the micro executed in software? The old 1 series could handle 12 of these at 8000...
50793
Stefan
slk171
Jun 16, 2012 8:15 am
use an 16x I/O expander on I2C or SPI. From: spacejuggernaut Sent: Friday, June 15, 2012 1:40 PM To: msp430@yahoogroups.com Subject: [msp430] Next step beyond...
50794
David Brown
davidbrown563
Jun 16, 2012 2:07 pm
... I don't know, I'm afraid. I haven't used C++ very much as yet, and it has always been with exceptions fully disabled ("-fno-exceptions in gcc)....
50795
Jon Kirwan
jondkirwan
Jun 16, 2012 7:50 pm
... I agree about the disabling of exceptions and exception handling -- except in some cases. I actually had to add a per thread, exception handler system...