Search the web
Sign In
New User? Sign Up
AT91SAM
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 365 - 394 of 4113   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
365
Well, I solved the problem. For some reason I had wrong values for the AIC_ defines. No idea where I got them from but now with the correct ones it is working...
Mike Wolfram
mikewolfram
Online Now Send Email
May 1, 2005
7:52 am
366
Hi, I need to write to flash from my application, so I have made the required functions to execute in RAM and I also disabled the interrupts before trying to...
Mike Wolfram
mikewolfram
Online Now Send Email
May 1, 2005
7:57 am
367
Hi, I need to run two lines of critical code. What's the inline code to disable global interrupt and enable interrupt surrounding my two lines of code? Thanks...
at91sam7s
Offline Send Email
May 2, 2005
6:38 am
368
The Windows version of the GNUARM toolchain for the ARM has been updated to 4.0. You can download the source and binary files at http://www.gnuarm.com...
Rick Collins
gnuarm
Offline Send Email
May 2, 2005
7:02 am
369
Very relevant question, yes! Should this stuff be done in a GDB ini-file, or might it as well be entered from the C-startuproutine??? (or both ways apply??) Is...
Larsen, Morten ActeNO
morten_vh_la...
Offline Send Email
May 2, 2005
7:17 am
370
I am trying to get the AT91SAM7S-RealTimeTimer-IAR4_11A-1_0 project working. I added a flash mode that uses the include in resource different macro and linker...
strong_arm7s
Offline Send Email
May 2, 2005
7:19 pm
371
I need to help with AT91SAM7S64. I already have winarm tool, but there is no header and linker files for SAM7S64. My second problem is, that I don't know, how...
hackerland2001
Offline Send Email
May 2, 2005
8:46 pm
372
... Here's the assembler Disable: mrs r0, cpsr orr r0,r0,#0x80 msr cpsr_c,r0 mov r0,#1 bx lr Enable: mrs r0, cpsr bic r0,r0,#0x80 msr cpsr_c,r0 bx lr...
embeddedjanitor
Offline Send Email
May 3, 2005
12:00 am
373
Hi I have problems finding a cheap source for AT91SAM7S128/256 controllers. Actually I have problems finding a source at all ... It seems the part's aren't...
skymab
Offline Send Email
May 3, 2005
7:44 am
374
... controllers. Actually I have problems finding a source at all ... It seems the part's aren't available yet ... ... availalbe yet I would be satisfied with...
j_heissel
Offline Send Email
May 3, 2005
10:58 am
375
Would this work too?::: void main (void) { unsigned int mask; //disable interrupts mask = AT91C_BASE_AIC->AIC_IMR; AT91C_BASE_AIC->AIC_IDCR = 0xFFFFFFFF; ...
at91sam7s
Offline Send Email
May 3, 2005
11:44 am
376
That approach tends to be the cause of spurious interrupts. If an interrupt occurs just before the AIC is disabled but not processed until just afterwards, you...
Bill Knight
wmk6341
Offline Send Email
May 3, 2005
12:09 pm
377
There is interest!:-) (In the past, I've always used the Atmel-supplied assembly wrappers for ISRs - No such thing yet for SAM7S, and I would anyway want to...
Larsen, Morten ActeNO
morten_vh_la...
Offline Send Email
May 3, 2005
12:49 pm
378
I've uploaded "armISR.zip" to the files section. It provides a number of routines for handing IRQ &/or FIQ (enable, disable, & restore). It also contains ISR...
Bill Knight
wmk6341
Offline Send Email
May 3, 2005
1:44 pm
379
Has any one used the bown out Interrupt on the At91SAM7S64? I want to know how much time I have on the interrupt, is there enough to write 5 bytes to an SPI...
strong_arm7s
Offline Send Email
May 3, 2005
9:07 pm
380
In case anyone is wondering about the distribution status of the SAM7 parts, I just received a small quantity of AT91SAM7S64 from Digi-Key. Scott...
starmitage
Offline Send Email
May 3, 2005
9:48 pm
381
Hello, After running my code in RAM debugger for nearly 6 hours it hung. I hit stop and it was stuck on the undefined instruction 0x04 infinite loop. Is this...
strong_arm7s
Offline Send Email
May 3, 2005
10:51 pm
382
You need to have reasonable exception traps in place. When you get a trap, you can inspect the lr register to see where the exception occurred. Undefined...
Charles Manning
embeddedjanitor
Offline Send Email
May 4, 2005
12:37 am
383
We get the debugger to break in all the traps and then do a call dump to see where we were when things went wrong... Usually gives you a starting point... ... ...
Tim Wade
vig42
Offline Send Email
May 4, 2005
1:44 am
384
Andrew If you can, check the LR )link register) to determine what code was running when the undefined instruction trap was hit. It may help or it may be in...
Bill Knight
wmk6341
Offline Send Email
May 4, 2005
2:20 am
385
... That's going to depend on a lot of things (unless the AT91s have a hold up cap I missed). How long does your hold up supply last from brownout until the...
Robert Adsett
robertadsett
Offline Send Email
May 4, 2005
3:40 am
386
I am able to run my code from flash on the eval board, but now I am trying to run it from Flash. With the debugger, i do the initreset, then it come back on...
strong_arm7s
Offline Send Email
May 4, 2005
6:49 pm
387
It appears to never executing the cstartup_sam7.c code. It does the ldr r13,=__iramend ; temporary stack in internal RAM ;--Call Low level init...
strong_arm7s
Offline Send Email
May 4, 2005
6:53 pm
388
Hi Andrew, Sounds like your remapping goes haywire. The Debugger needs to Reset after Flashing, and for some reason your Reset Vector at 0x0000 isn't there. My...
microbit
forum_microbit
Offline Send Email
May 4, 2005
7:01 pm
389
I want to communicate with a SPI serial flash. I've seen enough code to initialize the SPI port. However, I can't find any sample code that will show me how to...
at91sam7s
Offline Send Email
May 4, 2005
11:47 pm
390
I normally take the weasle approach with SPI and bit-bang it using GPIO routines. If you're just doing relatively infrequent communications to SEEPROMS etc...
Charles Manning
embeddedjanitor
Offline Send Email
May 5, 2005
12:02 am
391
hi u all i m having problem here that whether I2C standard support 89C52 or not or in the other meanings that 89C52 does not ocntain SDA line.. althoug getting...
adnan
adnansheikh2002
Offline Send Email
May 5, 2005
3:26 pm
392
Using the SPI is straight forward. Here is a sample of my init code and my read/write code. You have to write 0xFF in order to Read. Init: I am using the CSAAT...
strong_arm7s
Offline Send Email
May 5, 2005
4:53 pm
393
Thanks Kris... I found the problem.. The manufacturing people actually put at91sam7s128 chips on the board and didn't tell me.. Once I changed the linker and...
strong_arm7s
Offline Send Email
May 5, 2005
5:09 pm
394
Hi afaik, neither the AT89C52 nor the P89C52 support I2C interface. The P89C66x does support an I2C though like many other devices Bob...
lpc2100_fan
Offline Send Email
May 5, 2005
11:46 pm
Messages 365 - 394 of 4113   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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