Tagged Questions

ARM7 is an older generation of ARM processor designs.

learn more… | top users | synonyms

4
votes
5answers
2k views

Keil vs GCC for ARM7?

How does Keil compare to GCC for ARM7 development? I'm in the process of choosing hw consultants for a medium size project and some use keil and some use gcc. I'd like to know the gotchas involved in ...
2
votes
2answers
59 views

Does a dual-core ARM7 provide cache coherency between the cores?

On Intel processors, each core has its own L1 an L2 caches. Is this true on the ARM dual-core processors? If so, can I rely on cache coherency between the two cores, such that a thread running on core ...
2
votes
0answers
71 views

FP status transfer on ARM7

There is a comparison: if( val0 > val1 ) where val0 and val1 are double variables. The code generated by the Apple LLVM compiler is +0x184 vcmpe.f64 d17, d16 +0x188 ...
2
votes
2answers
294 views

How to right rotate a 64-bit value efficiently in ARM7 assembler?

The ARM7-command set offers efficient ways to right rotate 32-bit values by an arbitrary amount in assembler. For the 2nd operand of an operation it is even "for free" by specifying ror #n as shifter ...
2
votes
2answers
581 views

Porting newlib to a custom ARM setup

this is my first post, and it covers something which I've been trying to get working on and off for about a year now. Essentially it boils down to the following: I have a copy of newlib which I'm ...
2
votes
1answer
98 views

GPS Application in ARM7

I'm developing a GPS application under Linux, with ARM7 microprocessor. Which compiler do you recommend? Do you know if there is any toolkit with libraries ready to develop GPS applications? A ...
1
vote
1answer
349 views

I'm using three20 in an iphone iOS 4 project. I cant compile the project to the device

I try to compile but it fails because it find a duplicated definition of class in one of the dependencies and in the main dependency. I googled a lot and i even found the cause of this, due to a bug ...
0
votes
2answers
94 views

Trying to understand an assembly line of ARM7

I have this assembly line : 01000AD8: 979FF103 LDRLS PC,[PC,R3,LSL #2] With PC = 0x01000AD8 R3 = 0x00000008 CDPS = 800000D3 (so C=0, Z=0) When I execute this line, the new value for PC ...
0
votes
3answers
111 views

Any good books or sites to get a good knowledge of arm 7?

I am worried about the ARM controller. I want to start learning the basics through the ARM 7 then slowly move to higher versions and I want to learn it from right today as it gained much importance ...
0
votes
1answer
537 views

How Vector Interrupt Controller(VIC) is used to handle the external interrupts efficiently?

I want to know how VIC can handle the external interrupts efficiently
0
votes
1answer
302 views

How to calculate timer value to use to generate a timer IRQ

I'm using an ARM7 core microcontroller. I'm unsure of how to calculate what T1LD register value to load to the timer to allow it to generate an IRQ every x ms. The only information that I can find ...
0
votes
3answers
464 views

VGA Video using an ARM7

I need to put out a VGA signal from an AT91SAM7SE512. How can I do this without using an extra controller? I saw stuff on the web, but it needs to be able to modify the specific pixels.