Search the web
Sign In
New User? Sign Up
68HC12
? 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 16127 - 16156 of 16521   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16127
Hey everyone. I write code for an introductory programming course using microcontrollers. I wrote some code for an address book of sorts. In the code, I ...
nixknacks
Offline Send Email
Nov 1, 2008
8:03 am
16128
... Best Regards-- Shaimaa Yehia Secretary, IEEE Egypt GOLD, http://www.ieeegoldegypt.org ... From: <conference-services@...> Date: Fri, Oct 31, 2008 at...
Shaimaa Yehia
shaimaa_yehia
Offline Send Email
Nov 2, 2008
8:34 pm
16129
... Hi, ... I think it's an initialization problem; depending on what you intend to do, you can write: char names[10][8]={0x0}; // and write an initialization...
yoanp
Offline Send Email
Nov 4, 2008
5:57 am
16130
Hello, I have a communication between a HCS12 and a Computer. I receive CAN messages with the HCS12. That works fine so far, sending messages, too. Is it...
forum_user@...
folgli
Offline Send Email
Nov 4, 2008
5:14 pm
16131
yes you CAN! The incoming CAN ID is stored in the first 4 bytes of the receive buffer but you'll have to rearrange the bits a little to get it into a nice 11...
Steve Letkeman
zanthic999
Offline Send Email
Nov 4, 2008
5:29 pm
16132
Hello, I tried to read out the Identifier but it does not really work. Perhaps someone could tell me what is wrong. Best regards Here is my ISR: @interrupt...
forum_user@...
folgli
Offline Send Email
Nov 5, 2008
2:30 pm
16133
I'm not sure what exactly you're trying to do in your code or what your defines look like, but just as an example, if you had #define CAN0ID(b) *(volatile...
Steve Letkeman
zanthic999
Offline Send Email
Nov 5, 2008
4:37 pm
16134
Hello, I try to read out the ID and show it on a LCD. At the moment I am using 11 bit ID. The incoming CAN ID is stored in the first 4 bytes of the receive...
folgli@...
folgli
Offline Send Email
Nov 5, 2008
8:03 pm
16135
ultimately you are going to have to dig into the mscan manual and become familiar with all of the registers. Take a look in the manual for the figure labeled...
Steve Letkeman
zanthic999
Offline Send Email
Nov 5, 2008
9:29 pm
16136
... If you want to read 4 bytes, that should be ii <= 3 (or ii < 4 if you prefere that). Otherwise you will only read 3 bytes and RXData[3] will be...
Ruben Jönsson
maxruben2003
Offline Send Email
Nov 6, 2008
6:53 am
16137
Message attached below. Regards, Shaimaa Yehia ... From: Ziad H. Najem <rcd@...> Date: Tue, Nov 4, 2008 at 6:27 AM Subject: ACM/ICPC 2008 Arab &...
Shaimaa Yehia
shaimaa_yehia
Offline Send Email
Nov 8, 2008
8:50 pm
16138
Hello, thank you very much. I think that I understand now. I tried to write some programms to test the settings and so on. It works fine now with 11bit ID. I...
folgli@...
folgli
Offline Send Email
Nov 12, 2008
2:52 pm
16139
Hello, I tried to read out a 29 bit identifier. But it seems that I have problems to initialize the can module becausse I can not receive any CAN message. I...
folgli@...
folgli
Offline Send Email
Nov 13, 2008
9:57 pm
16140
I'm working on a Dragon12-P board from evbplus.com containing the mc9s12dp256 and using CW 5.9.0 for a compiler. I'm a beginner, too. :) I've got a C program...
jmeyer@...
eeboarder
Offline Send Email
Nov 14, 2008
10:58 pm
16141
Here is a simple example of setting the CAN controller up. It is getting a little old but still might help you out. Steve // This file may be freely...
Steve Letkeman
zanthic999
Offline Send Email
Nov 14, 2008
11:30 pm
16142
Here is something in C for you: // accepts ASCII characters from serial port and // adds them until <CR> or max length // echos input // accomodates back space...
jmeyer@...
eeboarder
Offline Send Email
Nov 14, 2008
11:43 pm
16143
http://www.evbplus.com/ This guy is great. He sells a lot of the product really close to cost. Plus, you get a discount if you're a student....
jmeyer@...
eeboarder
Offline Send Email
Nov 14, 2008
11:45 pm
16144
I will be out of the office starting 11/14/2008 and will not return until 11/17/2008. I will respond to your message when I return. ...
bkmohlman@...
bitjockey1
Offline Send Email
Nov 15, 2008
5:08 am
16145
Steve, ... Above line clears not only rec flag, but also WUPIF, CSCIF and OVRIF! To clear only RXF, you should either CAN0RFLG =1;...
Edward Karpicz
keffffek
Offline Send Email
Nov 16, 2008
7:56 am
16146
It could be something like old DP256 maskset errata MUCts00510: The SCI interrupt is only asserted if an odd number of interrupts are enabled and set. For...
Edward Karpicz
keffffek
Offline Send Email
Nov 17, 2008
7:15 am
16147
Hey man, Actually, I don't think reading them resets the flag... I dont' have time to look at it right now, but I know that the RTI at least has a flag that...
Nix Knacks
nixknacks
Offline Send Email
Nov 17, 2008
1:18 pm
16148
Hello All, I have searched in vain to try and find the output current driving capability of the MC9S12DG256 output pins. I can only find an "Absolute Maximum"...
Jeff McKnight
abc555tfts
Offline Send Email
Nov 17, 2008
3:13 pm
16149
It does sound like a flag not being cleared. I'll do some debugging. It should clear with the following: //clearing c = SCI1SR1; c = SCI1DRL; I'm still...
jmeyer@...
eeboarder
Offline Send Email
Nov 17, 2008
3:45 pm
16150
I checked the PARTID and it came out $33 which means I have the 0L01Y mask set. It shouldn't have any errata. ... I'm still having problems, so any advice or...
jmeyer@...
eeboarder
Offline Send Email
Nov 17, 2008
3:58 pm
16151
Try to clear it like this...Worked for me.... c = SCI1DRL; SCI1SR1 = SCI1SR1 & 0xDF; [Non-text portions of this message have been removed]...
Sam Skuddy
samskudd
Offline Send Email
Nov 17, 2008
4:08 pm
16152
I'm watching SC1SR1 on my LEDs. The RDRF flag is clearing just fine. After it does the job in the ISR, the IDLE flag goes on in SC1SR1. When the IDLE flag goes...
jmeyer@...
eeboarder
Offline Send Email
Nov 17, 2008
5:07 pm
16153
Hi Edward, to tell you the truth, I have always found some of the methods for clearing flags both confusing and inconsistent so I appreciate the correction. ...
Steve Letkeman
zanthic999
Offline Send Email
Nov 17, 2008
5:21 pm
16154
I got IDLE to clear, but it still just refuses to enter my ISR after the first time. The SC1SR1 only has the TDRE and TC flags on before and after the...
jmeyer@...
eeboarder
Offline Send Email
Nov 17, 2008
6:13 pm
16155
Hi Steve CANRFLG flags, timer flags, key wake up flags etc, they all are clearable writing '1' to them. CANRFLG = 1; // this is simple and OK. You write flags...
Edward Karpicz
keffffek
Offline Send Email
Nov 17, 2008
7:21 pm
16156
... Just to check, will the problem remain if you comment out the other function calls in the isr? Regards, Anders...
Anders Friberg
anders.friberg@...
Send Email
Nov 17, 2008
7:43 pm
Messages 16127 - 16156 of 16521   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