Hi! Thank you Louis, your answer was helpful, the site contains much interesting information besides the headers. Another question: Now I standing in front of...
There's one in our IPAC support package. http://www.emacinc.com/sbc_microcontrollers/ipac_hcs12.htm NZG...
NZG
ngustavson@...
Nov 1, 2004 4:14 pm
5486
Hello, I have Mandrake Linux 8.2 installed and I was wondering how everyone generally develops their C Code? Do you just use text editors or is there some...
Hi, Look at http://stephane.carrez.free.fr/m68hc11_tools_linux.php; I use mainly gvim; also Kwrite is also very good text editor. I think (not tried) also...
Ioan Petrescu
yoanp@...
Nov 2, 2004 8:40 am
5488
... I don't like IDEs, so I use normaly emacs (with the advantage, that it is available also for Windows and others) + make. One major thing about editors:...
Kdevelop is the obvious answer, as it is integrated into KDE. But IMHO a better answer is Eclipse, www.eclipse.org. NZG. ... From: 42Bastian Schick...
NZG
ngustavson@...
Nov 2, 2004 1:46 pm
5490
I like FTE. It's a curses based editor in the style of the old Borland DOS editors. It is aware of Make and can capture most GNU compilers outputs - so that...
What's with the IDE rebellion? I can understand the natural fear that an IDE can shoehorn your development efforts, or force you do do something a certain way,...
NZG
ngustavson@...
Nov 2, 2004 3:12 pm
5492
hey all I recently re-financed my mortgage for free even though I have BAD credit. They even gave me a great rate! Take a look at this service... ...
I am not avoiding IDE's. I just prefer Text and/or N-Curses based IDE's rather than Graphical based IDE's. I've been using Borland style Text IDE's for 15+...
... Tend to yes, but not always. Eclipse will run on most platforms as it's Java based. ... Can't prove you wrong on the debugger thing yet, but were working...
NZG
ngustavson@...
Nov 2, 2004 11:47 pm
5495
Peronally I think eclipse is a really neat all in one package (which I'm just discovering). One of the main reasons for giving it a go is that I like the...
500 bucks buys a LOT of Prototype boards, controllers, debugging tools, it'll buy an e-bay or cheap O-Scope or logic analyzer. 500 bucks is a fair amount of...
Hi, I've a problem with ld and memory.x and I can't find the solution. Maybe it's very easy for some else :-) I wrote an assembler file with .text - program...
gnu-m68hc11@...
Nov 3, 2004 6:01 pm
5499
I like jEdit. It's writen in java and has a console plugin to run make :)...
Hi Jeffs, ... First, thanks for answering :-) If by make or by hand: # m68hc11-as --gstabs -al -o foo.o foo.s > foo.lst Everthing is o.k. Foo.o is written,...
gnu-m68hc11@...
Nov 3, 2004 8:56 pm
5502
First, I'd guess that it didn't find your memory.x because you didn't add "-L." to search the current directory. That's also assuming you have your memory.x in...
I got to thinking about this, since it had no link error and since it put data directly following the program text... I think it worked as expected. One reason...
Hi, ... I don't think so: 1.) If I remove the memory.x file a get an error message. 2.) I can change the start adress for the .text section in memory.x and it ...
gnu-m68hc11@...
Nov 3, 2004 10:18 pm
5505
Oh, yea. I think you should add something like "-nostartfiles" to indicate that you are not making a normal C program. If you have a hard time managing the...
Good Afternoon John, I have read through the many responses to my original post (thanks to everyone for taking the time). I didn't realize it would become ...
Hi Jeffs, a BIG KISS :-) You are totaly right! ... Absolutly correct! Thats the way it works. I tested it in my hardware. I was searching for an error, but...
gnu-m68hc11@...
Nov 4, 2004 9:34 am
5508
As you have FTE already installed, linking to the GCC toolchain is accomplished via the "Tools" menu. Go to the Tools menu, select Compile. On the bottom of...
I need some help regarding gdb! I've a dll which is build with cygwin g++ with -g option, I want to debug that dll and the application that is using this dll...
I believe you have the wrong mailing list. This list if for using GCC as a cross compiler for Motorola HC11 and HC12 micro-controllers. For which there is no...
Software I compile makes use of string functions: strcmp, strncpy, etc. When I try to build my project I get linker error. The file I try ... #include...
This is the most important lesson I remember in C programming. The header which prototypes the function doesn't have anything to do with actually having a...