Search the web
Sign In
New User? Sign Up
gnu-m68hc11 · GNU 68HC11/HC12
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 3658 - 3687 of 9382   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3658
Hi, i am new to programming for the hc11/12, do you people know of a good tutorial for me to go through so i know how do the basics like read signals from...
barophobia
Offline Send Email
Jan 6, 2004
4:35 am
3659
HI there, For programming the HC11, I suggest getting the Motorola referance manuals for both the family and the specific Microcontroller you will use. For me...
wdollery
Offline Send Email
Jan 6, 2004
10:22 am
3660
Hi There, I've been able to get most things working on my F1 controller, however there is something bugging me. Some times the linker has an error undefined...
wdollery
Offline Send Email
Jan 6, 2004
12:54 pm
3661
My suggestion would be to buy a hardware package that has good gnu support (like the IPAC ahem). The IPAC and probably some other boards provide functions to...
NZG
ngustavson@...
Send Email
Jan 6, 2004
3:17 pm
3662
Hello. I am completely new to embedded systems programming (as well as using GNU), so please forgive my ignorance in these matters. However, I do have...
jdsteiger
Offline Send Email
Jan 6, 2004
7:57 pm
3663
First, I think you should put this somewhere in the system include files: extern void* memcpy (void* to, const void* from, size_t len); It's standard library...
Jefferson Smith
imajeff84663
Online Now Send Email
Jan 7, 2004
12:11 am
3664
Hi wdollery, Can you send me "HELLO WORLD" program which you compiled using GCC. I am still trying. along with how to compile,link and running details. Thanx...
gatty hithesh
u_hit_me
Offline Send Email
Jan 7, 2004
4:10 am
3665
... http://www.gsoft.com.au/~doconnor/hc12-example.tgz [chowder 15:04] ~/projects/hc12 >make m6812-elf-gcc -Os -g -m68hc12 -mshort -ffunction-sections -Dmc6812...
Daniel O'Connor
dariusmk2
Offline Send Email
Jan 7, 2004
4:38 am
3666
Hi U Hit Me, Actually the hello world example worked as advertised in the GEL examples "hello world tutorial". This was unusual as I'm using windows and...
wdollery
Offline Send Email
Jan 7, 2004
5:33 am
3667
... Almost certainly. It may be a banking thing. When I was playing around with memory.x in gel 1.5 I discovered that if I put the library functions in a...
NZG
ngustavson@...
Send Email
Jan 7, 2004
3:12 pm
3668
Hi all! I got a question, it's just a little OT, it's about string handling in c. I just can't figure out how it's easy done. How can I truncate a string in...
Andreas Hoffmann
delthc11
Offline Send Email
Jan 7, 2004
4:19 pm
3669
Here is small code snippet that may help. Regards, Wayne ... #define MaxStringLen (32) /* String should be null terminated (0x00 in last byte) */ ...
Wayne Contello
wcontello
Offline Send Email
Jan 7, 2004
5:13 pm
3670
How about strcpy(buf,&buf[1]); That should overwrite the old string with the old string offset by 1; It would be more efficient to write your own function, but...
NZG
ngustavson@...
Send Email
Jan 7, 2004
6:42 pm
3671
Actually now that I think about it this might not work as technically strcpy strings aren't supposed to overlap, you may need to copy to a temp buffer or ...
NZG
ngustavson@...
Send Email
Jan 7, 2004
6:50 pm
3672
P.S. what is this for? In every case I can think of too many implementations where this would be a good idea, but I don't know what your project is. NZG....
NZG
ngustavson@...
Send Email
Jan 7, 2004
6:56 pm
3673
Thanks wayne, thanks NZG! Both your ideas made me think in the right direction, I now used sprintf(buf,"%s",&buf[1]); but the strncopy might work too, just...
Andreas Hoffmann
delthc11
Offline Send Email
Jan 7, 2004
7:08 pm
3674
Glad to help. good idea to use sprintf. P.S. Are you sure you really need to modify the string itself? Couldn't you just pass the &buf[1] directly to the...
NZG
ngustavson@...
Send Email
Jan 7, 2004
8:19 pm
3675
... Wow, sprintf is a monster for such simple job. ... Just don't store the leading zero. -- 42Bastian...
42Bastian Schick
bastian42
Offline Send Email
Jan 8, 2004
6:39 am
3676
HI Jeffs, Thanks for your reply, I have a couple of questions, I think I understand what you mean about the banking thing but I haven't looked into banking at...
wdollery
Offline Send Email
Jan 8, 2004
7:24 am
3677
... Typically linking configuration is done with a memory.x file residing within the same directory as your source. If you don't have one I'm guessing it's ...
NZG
ngustavson@...
Send Email
Jan 8, 2004
3:13 pm
3678
It works best for me to find the right command line for gcc and other tools first. Later I can configure Makefile to send those commands. You say /lib/ is...
Jefferson Smith
imajeff84663
Online Now Send Email
Jan 8, 2004
4:24 pm
3679
ave ... That's libgcc Jeff, the base libraries required for everything, remember when I was moving everything around in memory and the compiler couldn't link...
Nathan Gustavson
ngustavson@...
Send Email
Jan 8, 2004
5:30 pm
3680
Yes, I realized the __div... functions are not in std libs. That's why we would really want to see the command lines used to generate the problem. Although I...
Jefferson Smith
imajeff84663
Online Now Send Email
Jan 8, 2004
8:49 pm
3681
Hi! ... the compiler generates calls to memcpy when the block to copy is large (ie, reached some size). This function is provided by libgcc which is part of...
Stephane Carrez
stephane_carrez
Offline Send Email
Jan 8, 2004
9:39 pm
3682
Hi Everybody, Thank you all for your replies, It seems that you all had something important to add to my solution. I can now compile the source and there is...
wdollery
Offline Send Email
Jan 9, 2004
6:39 am
3683
hey there, I'm new in the motorola world and my mission is to program a MC9S12DG128B. This is a 68HC12 kind a like. This µcontroller contains 1K register...
wvandebuerie
Offline Send Email
Jan 9, 2004
1:50 pm
3684
Well executed, good start, and thanks for that useful feedback :-) --jeffs...
Jefferson Smith
imajeff84663
Online Now Send Email
Jan 9, 2004
4:13 pm
3685
The EMAC IPAC uses a MC9S12DG128B. Many of the driver files in the project are proprietary and pre-compiled(they check for IPAC hardware), but the memory.x,...
NZG
ngustavson@...
Send Email
Jan 9, 2004
4:40 pm
3686
I have one not tested, derived from DP256 chip. Note the vectors_addr could be changed depending on whether you have a bootloader or not (which comes with...
Jefferson Smith
imajeff84663
Online Now Send Email
Jan 9, 2004
4:46 pm
3687
I'm not sure if anyone got my original request for help, so I'm sending it again. Any help in this matter would be appreciated. Thanks, John Steiger...
Steiger, John -Systems
jdsteiger
Offline Send Email
Jan 9, 2004
5:27 pm
Messages 3658 - 3687 of 9382   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