Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

msp430 · TI MSP430 microcontroller users group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 7766
  • Category: Hardware
  • Founded: Oct 13, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 6705 - 6734 of 51687   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
6705 Ferry Clasquin
ferry_clasquin Send Email
Feb 1, 2004
12:43 pm
Richard, Did you know that TI supplies the Schematic/PCB symbols in different formats for its devices? Look at the MSP430 product folder e.g.: ...
6706 Martijn Broens
martijnbroens Send Email
Feb 2, 2004
1:04 pm
Hi all, Did anyone ever come across this problem? I've got my project, compiled and tested on IAR. Runs fine. But now I wanted to add some extra code to the...
6707 John Speth
johnspeth Send Email
Feb 2, 2004
3:34 pm
Obviously the code outputs differ because the segments sizes differ. You probably don't have matching command line arguments and/or include files. That's...
6708 Martijn Broens
martijnbroens Send Email
Feb 2, 2004
3:38 pm
Kay i'll do that thanks _____ From: John Speth [mailto:john.speth@...] Sent: maandag 2 februari 2004 16:34 To: msp430@yahoogroups.com Subject:...
6709 a_bogdan_marinescu
a_bogdan_mar... Send Email
Feb 2, 2004
9:30 pm
I got lost trying to understand the timing of the MSP instructions. In the "MSP430x1xx User's guide" (slau049d.pdf) the NOP instruction is shown as an alias...
6710 Clyde Stubbs
clyde_0 Send Email
Feb 2, 2004
9:48 pm
While there is an encoding for mov #0,r3 that takes 2 bytes, the assembler automatically uses the shorter encoding which makes use of the MSP430 "constant...
6711 Dennis McGrath
dennismc342 Send Email
Feb 2, 2004
9:51 pm
Hello a_bogdan_marinescu, Tuesday, February 3, 2004, 10:29:39 AM, you wrote: a> I got lost trying to understand the timing of the MSP a> instructions. In...
6712 Filip Atanassov
philipat2 Send Email
Feb 2, 2004
10:01 pm
Hello, can somebody tell me how I can I place my main() at one particular memory location? I'm trying to make a bootloader for the msp430f147, placed in the...
6713 fqrley Send Email Feb 3, 2004
1:49 am
Omer, I think you have the most straightforward approach already. Maybe something like an interrupt service routine every 10 - 100ms depending on what else...
6714 onestone
onestone_apc Send Email
Feb 3, 2004
4:00 am
The instruction mov #0,r3 assembles as a single operand instruction, since #0 can be derived from one of the two constant generators. Where possible the...
6715 Jay C
pps_automation Send Email
Feb 3, 2004
5:02 am
I recently purchased the EasyWeb from Olimex, very cool piece of hardware. But I have a question for MSP430 in general. Can anybody direct me or provide a...
6716 Bogdan Marinescu
a_bogdan_mar... Send Email
Feb 3, 2004
5:38 am
Thank you for all your answers, things are much more clear now. The manual could be a little more explicit though. Bogdan onestone <onestone@...>...
6717 microbit
forum_microbit Send Email
Feb 3, 2004
8:27 am
Hi Jay, Maybe an option - proviso you can still can them - is a nifty part from Maxim - MAX3100. I used it a couple of times about 6 years ago. It's a complete...
6718 Ian Okey
ian_okey Send Email
Feb 3, 2004
8:54 am
You do not ned to force main to be at a constant location... You need to have the start address of your code stored in a pre-defined location. If you define a...
6719 pjascol Send Email Feb 3, 2004
10:00 am
Hi Filip I was asking last week how to place low_level_init (IAR compiler) into a fixed part of memory. This is called before main() and so I thought this may...
6720 Ömer Yalhı
oyalhi Send Email
Feb 3, 2004
12:00 pm
I would like to thank everyone for their answers. It seems I am not off the track. However, with my implementation (counting each time a button is pressed),...
6721 onestone
onestone_apc Send Email
Feb 3, 2004
12:19 pm
The larger MSP430's have 2 hardware UARTs. By following the application notes on the Ti web site you can easily create a software UART on Timer B. In fact you...
6722 onestone
onestone_apc Send Email
Feb 3, 2004
12:52 pm
First of all timed button presses are a bad idea for consumer goods, on the whole consumers don't like them, nor do most other users, remembering the sequnces...
6723 a_bogdan_marinescu
a_bogdan_mar... Send Email
Feb 3, 2004
12:54 pm
This is what I would try (I'm using the GNU tools from mspgcc.sourceforge.net): 1. specify a different section for main: void __attribute__((section(.bltext)))...
6724 Ian Okey
ian_okey Send Email
Feb 3, 2004
2:25 pm
Timer A (on the F14X devices) is the one with the SCCI bit register that is used to implement the extra UART channels. Timer A has 3 channels each of which...
6725 microbit
forum_microbit Send Email
Feb 3, 2004
2:39 pm
... Well I'm glad someone stills sees perspective in this regard. The concept of having EasyWeb concurrently running with several "software UARTs" is just...
6726 Ian Okey
ian_okey Send Email
Feb 3, 2004
2:56 pm
... Remember that using the timer to provide UART ... I well know the problem, having recently been asked to run a software UART at 38400 baud. At 9600 baud I...
6727 georgesilvis Send Email Feb 3, 2004
5:11 pm
I'm wondering how others cope with this situation: My board powers up right from battery insertion. But because the battery contacts often bounce, I'm getting...
6728 Leon Heller
leon_heller Send Email
Feb 3, 2004
5:26 pm
... From: "georgesilvis&quot; <gsilvis@...> To: <msp430@yahoogroups.com> Sent: Tuesday, February 03, 2004 5:09 PM Subject: [msp430] powerup from...
6729 georgesilvis Send Email Feb 3, 2004
5:37 pm
... connector. ... Ah. This is a big fat Makita Ni-MH battery being banged into the clips. If its inserted cleanly, no problem. But if the user rattles the...
6730 Brian C. Lane
bcl98312 Send Email
Feb 3, 2004
5:38 pm
... External brownout protection :> Really, there isn't anything you can do in the processor to get it out of the confused state. You can make it less likely...
6731 microbit
forum_microbit Send Email
Feb 3, 2004
5:45 pm
Hi George, I don't think putting the MCU to sleep will help. If you don't want to resort to HW, there isn't really a 100% reliable solution to prevent...
6732 Mark E. Skeels
meskeels Send Email
Feb 3, 2004
5:47 pm
Yes, I added two circuits to fix this on my battery-powered device. I used a TI supervisor, part # TPS3809K33DBVT to control the reset and fix the brownout...
6733 microbit
forum_microbit Send Email
Feb 3, 2004
5:50 pm
... BTW : If you do use a Brownout part, DON'T use those classic MC34064-ish family Motorola parts -- they're crap. Their assertion delay is too long (like 20 ...
6734 Kent Johansen
kentanakron Send Email
Feb 3, 2004
5:57 pm
Other idea: As a default, the WDT is enabled on startup. In AQ430, the cstart.asm disables it. If you wait for the WDT to fire first time, you would have a...
Messages 6705 - 6734 of 51687   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help