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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2319 - 2348 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2319
Hi, Just a short note on jlink. Both jlink(wether IAR or SEGGER labeled) are designed by Segger.I worked once for Rolf Segger back in '03 when this box was...
Tobias Weber
synthetik22
Offline Send Email
Jul 1, 2006
8:44 am
2320
Which setup should new users go with, WinARM or the Eclipse/GNU ARM? I know WinARM uses the GNU ARM tools. I also know that WinARM is a lot easier to install....
David Fowler
dfowler7437
Offline Send Email
Jul 1, 2006
11:04 pm
2321
The www.gnuarm.com website is undergoing some hosting changes. In the course of changes some pages will be hosted at www.gnuarm.net. But the main entry URL...
Rick Collins
gnuarm
Offline Send Email
Jul 2, 2006
1:08 am
2322
I noticed that a sample project used external references in a LPC2XXX header file instead of the usual #defines for each of the I/O registers. The externals...
David Fowler
dfowler7437
Offline Send Email
Jul 2, 2006
4:02 am
2323
Hi David, I can think of one argument for using the #define method over your proposed PROVIDE method - that the compiler can potentially produce tighter code. ...
Danish Ali
dr_danish_ali
Offline Send Email
Jul 2, 2006
8:38 am
2324
Hi David. My experience is that the Winarm native-Windows compiler is a bit faster. This may make a significant difference if you're compiling very large...
lynchzilla
Offline Send Email
Jul 2, 2006
2:50 pm
2325
... I believe that the PROVIDE becomes part of the Symbol Table while the #define does not. If you are debugging, you could say "print /x T0IR" instead of...
Tom Walsh
twalsh0001
Offline Send Email
Jul 2, 2006
4:11 pm
2326
Danish, I just cut and pasted some code from example files. I noticed the char vrs long thing too. I have not studied it yet but I'm guessing that that ...
David Fowler
dfowler7437
Offline Send Email
Jul 2, 2006
5:14 pm
2327
I have placed demo2129_blink.zip in the files section of the group. The zip has modified versions of example projects for use with the Olimex LPC-P2129 board....
David Fowler
dfowler7437
Offline Send Email
Jul 2, 2006
11:43 pm
2328
... While that is certainly possible I don't know of anyone reporting that is true. What apparently is true is that if you define a set of peripheral ...
Robert Adsett
robertadsett
Offline Send Email
Jul 3, 2006
12:00 am
2329
... I suspect the sample you saw was one of mine since I haven't seen anyone else use that for the LPC2000. I have to confess I started down that road mostly...
Robert Adsett
robertadsett
Offline Send Email
Jul 3, 2006
12:06 am
2330
... In a lot of cases it won't make a lot of difference, but if I remember correctly there are a few registers on the LPC for which the user manual explicitly...
Robert Adsett
robertadsett
Offline Send Email
Jul 3, 2006
12:10 am
2331
Hello Check out the links on this page: http://www.sparkfun.com/cgi-bin/phpbb/viewtopic.php?t=1331&sid=460a91a5b5383a9e1c67522ae30d3c9c. If you cannot find the...
Szekely Balazs
szbali
Offline Send Email
Jul 3, 2006
7:38 am
2332
Hi all, If I want to test Flag bits in a 32bit word (memory location, or variable) Is the following OK #define test_bit(Reg32_val, bit_no) ((Reg32_val >>...
joegldbrg
Offline Send Email
Jul 3, 2006
10:57 am
2333
Hi all, I know I could implement SWI handling in assembly but since gcc support using __attribute__ I thought I could use it to implement it completely in C....
Mohamad Yusri Mohamad...
mohamadyusri...
Offline Send Email
Jul 3, 2006
1:56 pm
2334
Hello David I am using WinARM with eclipse/Zylin-EmbeddedCDT/OpenOCD, running eclipse as debug front end for the arm-elf-gdb debugger. With this setup I have...
Lourens van der Merwe
aptotek
Offline Send Email
Jul 3, 2006
2:53 pm
2335
... First that construct won't work 1 << 14 is always true and so has no effect flag_mem >> 14 will be true for any value that has any bit over bit 13 set so...
Robert Adsett
robertadsett
Offline Send Email
Jul 3, 2006
4:09 pm
2336
I am playing around with the blinky sample code from the WinARM examples. I decided to try adding some C++ code and have hit a road block. blinky.o: In...
David Fowler
dfowler7437
Offline Send Email
Jul 4, 2006
2:04 am
2337
I figured it out. To do C++ you need a lib, for the malloc for new. I used newlib and had to modify the linker command file a bit. I figured this out by...
David Fowler
dfowler7437
Offline Send Email
Jul 4, 2006
3:09 am
2338
Lourens, Thanks for the information. I will experiment with your setup. I have been having a lot of trouble getting the JTAG stuff to work in Eclipse or even...
David Fowler
dfowler7437
Offline Send Email
Jul 4, 2006
8:03 pm
2339
OK, I don't have it figured out, lots of undefined symbols now. How does the linker find newlib-lpc? I can see the command option in the build process...
David Fowler
dfowler7437
Offline Send Email
Jul 4, 2006
8:05 pm
2340
Hello David I have the Olimex Wiggler and have had no problems since I switched to OpenOCD (openocd-2006re76-setup-rc01 windows 32 native). Before this I...
Lourens
aptotek
Offline Send Email
Jul 4, 2006
9:03 pm
2341
... sbrk_r is target system dependant. sbrk_r is a function to allocate memory from the heap (heap is area between the end of .data and the .stack). You have...
Tom Walsh
twalsh0001
Offline Send Email
Jul 5, 2006
2:17 am
2342
Just curious about this; have you actually managed to get the J-Link to work flawlessly with GDB/Insight (via JLinkGDBServerV1.0.0)??? I can load code, set...
Larsen, Morten ActeNO
morten_vh_la...
Offline Send Email
Jul 5, 2006
1:14 pm
2343
... I have the same error message recently. I am coding C++ with GCC v3.3.1. The problem was solved with linking to "lstdc++". Obey the order of linking "......
bodhisatva@...
zdravko_k_d
Offline Send Email
Jul 5, 2006
1:17 pm
2344
... And add SAM-ICE to that list, as far as I know. Yes, but even if they are using the same DLLs there seem to be funtional differences as to how each of them...
Joe
staticwhites...
Offline Send Email
Jul 5, 2006
10:04 pm
2345
... what makes you think GCC would handle SWI instructions including reasons and args? i could not find any reference to this, neither in the info files nor...
clemens fischer
numanao
Offline Send Email
Jul 6, 2006
4:52 pm
2346
... *args) { ... reasons ... guys, it states from the arm reference manual that swi instruction ignores the 24 bits encoded in the instruction. also, whatever...
erichaukster
Offline Send Email
Jul 6, 2006
6:51 pm
2347
... This is not really correct. Yes, the core **does** ignore the 24 least significant bits, but that is generally because those bits are used to pass a...
Charles Manning
embeddedjanitor
Offline Send Email
Jul 6, 2006
10:47 pm
2348
Morten, I could not say flawlessly yet as I have had limited experience with it so far. I used the tools in the latest version of WinARM and downloaded the...
David Fowler
dfowler7437
Offline Send Email
Jul 7, 2006
3:41 am
Messages 2319 - 2348 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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