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 4353 - 4382 of 9382   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4353
My problem is almost fixed... ... All stuff which i'm using are in www.ic.unicamp.br/~ra015988/hc11, including sources and makefile. Using the -lc option, i...
fabio_xco
Offline Send Email
May 2, 2004
12:49 am
4354
I've built up my own board for the 68hc11e1. All I have on it is the MCU the crystal and a few minor support components, so there is only the 512 bytes of RAM...
Lee Johnson
eljin7
Offline Send Email
May 2, 2004
1:12 am
4355
Now, i'm not using the libraries, and i'm trying to make my own putchar and getchar... For that, I'm using the "asm" command, but i didn't found in anywhere ...
fabio_xco
Offline Send Email
May 2, 2004
4:59 am
4356
try this: //start of main.c int n; int main(void) { asm("ldaa n"); return 0; } //end of main.c Regards, Remko P.S. make sure the int is an 8 bits integer...
Remko Galama
remkomg77
Offline Send Email
May 2, 2004
9:48 am
4357
Hi, I'm a having a few problems with context switching and the role of the stack. I want to switch context to that of a previous function (or task) when the...
lulou64
Offline Send Email
May 2, 2004
2:01 pm
4358
Hi, I assume you understand that each task will need it's own private stack. In order to switch context all context must be saved. Off course this is allready...
Remko Galama
remkomg77
Offline Send Email
May 2, 2004
3:33 pm
4359
Does Debug-12 reconstruct his vector interrupt when it starts? Do I have to "backup" it if I overwrite the Debug-12 vector interrupt? Simon Defayette...
Simon Defayette
simon_defayette
Offline Send Email
May 2, 2004
4:46 pm
4360
Works VERY fine! Thanks!!! Fabio...
fabio_xco
Offline Send Email
May 2, 2004
4:48 pm
4361
Hi, I have a question regarding basic HC11 operation. I have developed a custom board that uses the HC11E1 running in single chip mode. There are really no...
Justin
justin2076
Offline Send Email
May 2, 2004
8:51 pm
4362
I released a new version of my EmbeddedGNU IDE for Windows recently. I added support for the hcs12c32 MPU, as sold embedded in DIP modules from Technological...
Eric Engler
englere.geo
Offline Send Email
May 3, 2004
3:01 am
4363
... -- snip ... I think, that your code is OK, diference between A1 and E1 is only in RAM (A1-255 byte E1-512 byte), when you have this problem check the...
Petr Lascak
hwsoft@...
Send Email
May 3, 2004
7:40 pm
4364
I am beginning to think that it is a software issue. I swapped the E1 chip into my Handyboard and the Handyboard no longer works. So, on tried-and-true...
Justin
justin2076
Offline Send Email
May 3, 2004
8:03 pm
4365
... I dont think that its in software. ... A and E family is the same, only in RAM they difer. As I remeber, that bootloader code isn't equal. I think, when...
Petr Lascak
hwsoft@...
Send Email
May 3, 2004
8:13 pm
4366
... There is another difference : you can set the direction of PA3. You can find that in the PACTL register of the timer section. The PACTL also defines the...
Armand ten Doesschate
a.doesschate@...
Send Email
May 3, 2004
8:39 pm
4367
I don't know much about these old HC11 chip versions, but I was wondering if you were having a problem where COP watchdog is enabled in the non-working...
Jefferson Smith
imajeff84663
Online Now Send Email
May 3, 2004
8:49 pm
4368
I did FINALLY figure out some of my problem. I had to go back and read a thousand back posts about the memory.x file and then just make an uneducated guess,...
Lee Johnson
eljin7
Offline Send Email
May 3, 2004
9:25 pm
4369
I can disable the COP watchdog in the CONFIG register, right? I suppose this is a possible problem. But, I think that there will be 16.4 msec of time when...
Justin
justin2076
Offline Send Email
May 3, 2004
9:58 pm
4370
Hello, thanks for the help. I understand what you're saying, but I can't seem to initialise the task's stack with the start address of the task (successfully)....
lulou64
Offline Send Email
May 4, 2004
12:29 am
4371
... Look into the CPU12 manual, it describes how the stack looks after an interrupt (or before executing rti). Just prepare it like this. Registers A,B,X,Y are...
42Bastian Schick
bastian42
Offline Send Email
May 4, 2004
4:19 am
4372
Hi, I do have some code and I don't mind sending you this in order to help you. The problem is that the code is in C and was for me the easiest way to get it...
Remko Galama
remkomg77
Offline Send Email
May 4, 2004
6:57 am
4373
The trick here is to ensure that you always perform the stack swap at the same point in the code for each task, and that the stack is always in the same state...
John Gow
jgow@...
Send Email
May 4, 2004
8:04 am
4374
Hi! I am looking for ELF to DBG (imagecraft debug file format). Someone can help me? Thanks in advance...
antoinetintin
Offline Send Email
May 4, 2004
8:31 am
4375
Lee, I dont know if you have been reading my posts, but I seem to have designed the same board as you have. HC11E1 in single chip mode, nothing on board...
Justin
justin2076
Offline Send Email
May 4, 2004
1:06 pm
4376
Hello, I came to a point that I would like to map my RAM from 2000h to 3FFFh on my S12DG128B. In my memory section I changed this, for data and stack: MEMORY {...
peter_lingier
Offline Send Email
May 5, 2004
10:25 am
4377
My problem was usually that when I run it in normal mode (because I'm not debugging), the COP watchdog times out. So one of my premain steps is to disable COP....
Jefferson Smith
imajeff84663
Online Now Send Email
May 5, 2004
11:06 pm
4378
No, this is not working. I added 'COPCTL &= 0xF8;' before I write to the INITRM register. According the docs, bit 2:0 has to be on zero to disable the ...
peter_lingier
Offline Send Email
May 6, 2004
11:33 am
4379
Peter, I aplogize that I haven't been following this conversation very closely, so I don't know if this idea has been discussed already. One of the problems I...
Eric Engler
englere.geo
Offline Send Email
May 6, 2004
12:10 pm
4380
Hi Peter, If the stack is getting toasted you could try this in your premain. Save your stack pointer before moving your ram and then put it back after the...
Scott
x9sp
Online Now Send Email
May 6, 2004
12:31 pm
4381
I want to add that I've been doing the COP disable thing only on the M68HC912, and this sounds like the same symptoms. My solution was to reset the COP timer...
Jefferson Smith
imajeff84663
Online Now Send Email
May 6, 2004
3:44 pm
4382
Another way to initialise a context is to take a leaf out of the UN*X book and implement a fork() call. Essentially, you use an SWI instruction to fork a new...
Dermot Tynan
xyzzy94304
Offline Send Email
May 6, 2004
5:14 pm
Messages 4353 - 4382 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