Hi all, I'd like to know your opinion about which IDE is better for you, the Code Composser 2.0, or the IAR 4.10. I've using IAR for several years and I want...
36300
old_cow_yellow
Apr 29, 2008 8:06 pm
I cannot answer your question. But Dvorak Keyboard is better....
36301
Hugh Molesworth
nzbackpackers
Apr 29, 2008 8:35 pm
Simple answer: Does the supply voltage change just by setting a breakpoint? Yes, when the supply comes from outside and you are fiddling with breakpoints which...
36302
marty
masman2k
Apr 30, 2008 12:16 am
we just went through this same scenario at our company. In general, you get what you pay for. The questions are do you use it and how fast can you learn a new...
36303
paddu.koti
Apr 30, 2008 12:19 am
yes.. ... CPU_OFF ... register) is ... an ... mode....
36304
marty
masman2k
Apr 30, 2008 1:06 am
you can use the Tx done bit like you show below but you may need to "prime the pump" by sending a byte frist. U8 spi_rcv_byte(void) { U8 tmp; IFG2 &=...
36305
Eric Engler
englere.geo
Apr 30, 2008 4:22 am
... No, I didn't figure that I could get much improvement that way. I moved the modules around to see if a different angle could help, but no angle helped...
36306
Jean-Marc Koller
jm_kikori
Apr 30, 2008 6:56 am
... I wrote a small test application (see <http://homepage.bluewin.ch/jmkikori/devel/>) in order to test the influence of the different settings of the...
36307
chinmay nanda
chinmay124
Apr 30, 2008 8:01 am
hi, I have read a previous post dated jan 5 06 which cleared my quries somewhat. I am using msp430f1611 and my target board has its own power. all connections...
36308
mohammed shareef
imshareef2003
Apr 30, 2008 9:44 am
Surprisingly when i connected the FET debugger things worked. The TXIFG flag was set as soon as UCSWRST was set. The problem was with the IAR Simulator i...
36309
Joe Radomski
joeradomski
Apr 30, 2008 10:31 am
before you make a decision, I would suggest you contact Rowley and check out their latest software.. the v2.0 ide is quite nice.. its in beta right now and...
36310
irfanahhq@...
irfanahhq
Apr 30, 2008 10:32 am
Hi there. I'm using a MSP430F169 in my graduation project and I'd like to ask some questions about the UART and clock generation. The project and the problem: ...
36311
Paul Curtis
paul_l_curtis
Apr 30, 2008 10:39 am
Hi Joe, ... Yeah, we're working on it... -- Paul Curtis, Rowley Associates Ltd http://www.rowley.co.uk CrossWorks for ARM, MSP430, AVR, MAXQ, and now...
36312
irfanahhq@...
irfanahhq
Apr 30, 2008 10:45 am
Hi chad, now i am doing the same project.. did u get the any solution.. if u got plz give me the hints.. i will be thankful... irfan I am currently looking at...
36313
irfanahhq@...
irfanahhq
Apr 30, 2008 10:49 am
Hi there. I'm using a MSP430F169 in my graduation project and I'd like to ask some questions about the UART and clock generation. The project and the problem: ...
36314
David Boyd
dboydinga
Apr 30, 2008 12:56 pm
When the GANG430 is set to program independently-powered targets, it expects to sense the target Vcc voltage appearing at pin 4 of the JTAG header. It uses...
36315
kishor babu
kishor_jntu
Apr 30, 2008 2:32 pm
Hello all, the user guide for f2xx series says that UCA1TXIFG is cleared/reset upon writing to UCA1TXBUF. But it is not so with us. I checked both in...
36316
old_cow_yellow
Apr 30, 2008 3:09 pm
The simplest way is to replace F13x/F14x/F16x with F23x/F24x/F26x (respectively). These chips are almost pin to pin compatible and need minimum...
36317
Andy Warner
andyw_lala
Apr 30, 2008 9:34 pm
I have an application where I have tight assembler loops polling Timer A and wiggling pins. I would like to combine this with running Timer B in interrupt mode...
36318
old_cow_yellow
Apr 30, 2008 10:10 pm
TAIV stands for Timer_A Interrupt Vector. It has nothing to do with Timer_B interrupts....
36319
Andy Warner
andyw_lala
Apr 30, 2008 10:24 pm
On Wed, Apr 30, 2008 at 5:10 PM, old_cow_yellow ... Yeah - I know that - I must not have been clear. I want to poll Timer A for rollovers (very fast) while ...
36320
old_cow_yellow
Apr 30, 2008 10:50 pm
I see. Maybe you can use the WDT instead of Timer_B. Or, maybe you do not need to use Timer_A for the fast loop. What are the MCLK, SMCLK, and ACLK...
36321
Eric Engler
englere.geo
May 1, 2008 12:00 am
... So what's the bottom line - how much more range did you get? Many of us can live with a slow data rate, but we really need a reliable range over 30 feet....
36322
paddu.koti
May 1, 2008 12:25 am
Hi, I am using MSP430FG4618/F2013 Experimenter Board and I need to check the SPI serial communication between FG4619 and F2013.I couldn't find the sample...
36323
Onestone
onestone_apc
May 1, 2008 1:35 am
Hi Andy You state that you're polling Timer A for rollovers. A slow event, I assume you need to catch these faster than the interrupt latency allows. Why not...
36324
Thanh Tran
thanhtranhd
May 1, 2008 1:40 am
I would check to see if a is being reset outside of ISR routine. The code looks like it should have no problem. It's similar to MST_Data in a way that they are...
36325
pharsyght
May 1, 2008 2:04 am
TI released V3 of the code composer yesterday. I believe it runs IAR code examples, unlike V2, which means a more fluid transfer between IAR and Code Composer....
36326
Andy Warner
andyw_lala
May 1, 2008 2:10 am
... Correct. I'm clocking Timer A externally from a fast source, and have a divisor of 16, so I can generate a secondary frequency locked to TACLK on TA1. TA1...
36327
Onestone
onestone_apc
May 1, 2008 4:20 am
Hi again ... Any interrupt flag will set, whether it is enabled or not, if the relevant event occurs. In fact in some cases they can be set by simply changing...
36328
Leon
leon_heller
May 1, 2008 6:08 am
... From: "paddu.koti" <paddu.koti@...> To: <msp430@yahoogroups.com> Sent: Thursday, May 01, 2008 1:25 AM Subject: [msp430] SPI serial comm.. ... You'll...