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 3723 - 3752 of 3936   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3723
Hi all, I am having really strange behavior, which I could not explain to myself. When I do a copy from 0x20208A10 to 0x20487382, all the content is copied. ...
ICLI, Bekir (EXT)
bicli84
Offline Send Email
Jun 2, 2008
4:40 am
3724
This is a compiler question, not processor specific. Ask in another forum. On Mon, Jun 2, 2008 at 12:40 AM, ICLI, Bekir (EXT) <...
Eric Haver
havereric2
Offline Send Email
Jun 2, 2008
4:56 am
3725
The ARM processor can only operate on 32 bit words properly aligned in 4-byte boundaries. Try : 0x20208A10 to 0x20487380/0x20487384 etc. ...
microbit
forum_microbit
Offline Send Email
Jun 2, 2008
6:25 am
3726
It is processor specific ….. (ARM that is) ________________________________________ From: AT91SAM@yahoogroups.com [mailto:AT91SAM@yahoogroups.com] On Behalf...
microbit
forum_microbit
Offline Send Email
Jun 2, 2008
6:26 am
3727
Actually, I do not believe it is a compiler question, I believe it's a valid ARM implementation question. Mis-aligned word reads will not read what you expect...
Paul Curtis
paul_l_curtis
Offline Send Email
Jun 2, 2008
6:29 am
3728
Thanks for the answer microbit, Therefore I enabled the alignment checks on addresses. But I still do not understand why there is such a thing in ARM. Why...
ICLI, Bekir (EXT)
bicli84
Offline Send Email
Jun 2, 2008
6:29 am
3729
Hi, From: AT91SAM@yahoogroups.com [mailto:AT91SAM@yahoogroups.com] On Behalf Of ICLI, Bekir (EXT) Sent: 02 June 2008 07:30 To: AT91SAM@yahoogroups.com Subject:...
Paul Curtis
paul_l_curtis
Offline Send Email
Jun 2, 2008
6:33 am
3730
... Yes and no. It's in the hardwiring to the ALU. To read 4 bytes in go, you need the lowest 2 bits to address byte 0/1/2/3. So, you can therefore only...
microbit
forum_microbit
Offline Send Email
Jun 2, 2008
9:14 am
3731
Kris, ... Only 68020 had this, 68000 and 68010 didn't, you just got an Address Error. The 030 was an 020 with an MMU and tolerated misaligned loads. The 040...
Paul Curtis
paul_l_curtis
Offline Send Email
Jun 2, 2008
9:53 am
3732
Thanks Paul, too long ago.. ... From: AT91SAM@yahoogroups.com [mailto:AT91SAM@yahoogroups.com] On Behalf Of Paul Curtis Sent: Monday, 2 June 2008 8:07 PM To:...
microbit
forum_microbit
Offline Send Email
Jun 2, 2008
12:51 pm
3733
Hi All, I recently bought Olimex SAM7EX256 board. When I connect it to the USB port, it is not getting recognized by the WinXP. If I start SAM-BA v2.6 and try...
skillgames2004
Offline Send Email
Jun 3, 2008
2:03 am
3734
Dear All, In Reset state for AT91SAM7S256, all the I/O port will be active High by default. Is there any possibility we can change to low state for I/O at...
michael angelo
bun_siip
Offline Send Email
Jun 3, 2008
4:34 am
3735
... They are pulled up IOs. You can defeat them by pulling low with an external resistor....
Charles Manning
embeddedjanitor
Offline Send Email
Jun 3, 2008
6:15 am
3736
Hi all, I've seen in the manual of AT91SAM9RL64 such a statement: "The SD Card, NAND Flash and DataFlash downloaded code size must be inferior to 56 K bytes." ...
ICLI, Bekir (EXT)
bicli84
Offline Send Email
Jun 3, 2008
9:21 am
3737
Because these 12K is reserved for level one bootloader program, which browses external memories, detects and downloads your code from flash to RAM. S...
Pavel Bazika
pavelbazika
Offline Send Email
Jun 3, 2008
10:54 am
3738
It doesn't work when powered from USB, you need to use an external power supply. 1. Switch the board's power supply jumper from "USB" to "EXT". 2. Apply power...
Bogdan Marinescu
a_bogdan_mar...
Offline Send Email
Jun 3, 2008
12:12 pm
3739
Hi! Im a newbie in ARM7, and I have a problem when i use UART on AT91SAM7X256 uC in CrossWorks 1.7 (my board is an Olimex SAM-EX256). I can send characters to...
Dávid Bacsa
david.bacsa
Offline Send Email
Jun 3, 2008
1:02 pm
3740
Check the pointer going in for validity (it it reasonable?) Single step uart0_puts at the instruction level and examine the addresses being used. -- Paul...
Paul Curtis
paul_l_curtis
Offline Send Email
Jun 3, 2008
1:29 pm
3741
Thanks for your suggestion. I checked it, and the pointer points at the same address in the uart0_puts() function like the one with which I call this function...
Dávid Bacsa
david.bacsa
Offline Send Email
Jun 3, 2008
1:47 pm
3742
Single step. Really. You know, figure out what is aborting. Data abort == bad pointer....
Paul Curtis
paul_l_curtis
Offline Send Email
Jun 3, 2008
1:53 pm
3743
Check that you don't have tx interrupts enabled and don't handle them [no ISR]. Fredrik ... From: Dávid Bacsa <david.bacsa@...> To:...
ffredrik
Offline Send Email
Jun 3, 2008
1:56 pm
3744
David, Below is a piece of code that I am using to display the address of the instruction that cause the Abort. On my board, I have a LCD display, but you can...
Eric Pasquier
eric_pasquier
Offline Send Email
Jun 3, 2008
3:02 pm
3745
Hi, Thanks for replying.I tried changing to external power supply, but there is no change. SAM-BA still gives the same message 'Failed to open connection'. Is...
skillgames2004
Offline Send Email
Jun 3, 2008
5:17 pm
3746
Thank you all who tried to help me, I solved the problem. Its a shame that I had this mistake which is usually taught on the first programming lesson. I used...
Dávid Bacsa
david.bacsa
Offline Send Email
Jun 3, 2008
6:47 pm
3747
Things like this happen. However, if you turn your compiler's warning options full on, they won't get unnoticed....
Bogdan Marinescu
a_bogdan_mar...
Offline Send Email
Jun 3, 2008
7:20 pm
3748
Actually, I could not pull low the signal, because my system have the power chip using active low to shutdown. If I put pull down external resistor then the...
michael angelo
bun_siip
Offline Send Email
Jun 4, 2008
4:11 am
3749
Hi, I am using KEIL compiler for my SAM7SE512. We have quite a bit of code developed for this project & now all of sudden when I implemented some more...
gujarati2000
Offline Send Email
Jun 4, 2008
7:27 pm
3750
I got it working. I think the problem was with JTAGSel jumper. Once I removed that jumper, Windows recognised the board as Atmel and I am able to connect to it...
kishore_2005@...
skillgames2004
Offline Send Email
Jun 5, 2008
5:20 am
3751
Hello, 1) Is your KEIL compiler version is code limited? 2) Temporarily remove some other functions / code to make more space then run the offending function...
vinaydand
Offline Send Email
Jun 5, 2008
9:07 am
3752
Hi I am using at91sam9260 and i am trying to compile glibc 2.3.5 with nptl support for this board . I am not been able to do it as there is no patch for the...
Virupax SS
Virupax.SS@...
Send Email
Jun 5, 2008
12:05 pm
Messages 3723 - 3752 of 3936   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