Dbug-12 Rev 2.xx has its RAM vectors located from $B00 through $B39 in nearly the same order as the HC12 interrupt vectors. You can set them up yourself or...
Hello, I am new to this group. I am at a beginner level. I am an amateur Electronic from Madrid (Spain). I am new to Motorola MCU. My previous MCU was Intel...
Hallo Spain, this is a calling from Sweden, the opposite corner of Europe, I have been working with both Motorola(Freescale) and Intel. One of the most...
Hello Åke, Thanks for the information. I am learning a lot from Motorola 'intro_mc68hc12.pdf', and 'S12CPUV2.pdf' (Reference Manual), and also from source...
Hello, In codewarrior evaluation version (Special Edition), can't you use beans? Thank you! _________________________________________________________________ ...
... beans? I think that 'basic beans' can be used. Read this: http://www.processorexpert.com/hcs12/metrowerksinfo.html But I am not sure. When I launch 'beans...
Yes, you can. See http://www.metrowerks.com/MW/Develop/Embedded/HC12/Processor+Expert.htm The Special Edition is not the evaluation version. But in both you...
... You have to register for a special edition license and install the special edition license. Without this license customer will be able to build up to 1K...
The basic beans can be used, however only if you have a license file. You do get this license file for the special edition by registering at the Metrowerks web...
... Yes you can use PE bean but are limited to Basic bean only. You might want to refer to: http://www.metrowerks.com/MW/Develop/Embedded/HC12/Default.htm and...
Thanks for the effort Edward, but your reply didn't really help me understand my problem. Perhaps I didn't express myself clearly, so it looks like I will have...
Steve, Instead of using the PWM, why don't you use the timer module. In the original HC12A4, there was no PWM. You could however setup TC7 as the timer period...
You can use PWM concatenate mode to get 16 bits of resolution. This will cut your number of channels in half, but is the easiest way to control an RC servo....
Hi The PDF shows PRO and SPC/SPC* in the colums, I guess the PRO stands for the Professional Version, the SPC stands for Special Edition and what is the *...
Hi, I use the Output compare feature to drive RC servo. Prescale the timer by 4 and you will get a 2048 steps resolution and 20 ms period. Works great. Mike ...
Hello, Spain !!! I used in a recent past Intel 8051. But, for my systems, It becum too little... Specially the limit of 64K program. Now, I use Motorola...
... help me ... clearly, so it ... that you ... which the ... selection values, ... byte(0-255). ... the (scaled) ... for my ... 1.75ms, or a ... my servo ... ...
Ups, formulas should have floor probably (largest integer not greater than) instead of ceil. And T0=2^16 / ECLK=8.192ms N=2 ^ floor(log2(Tpwm/T0))=4 ...
... The asterisk for SPC and Pro means that beans are implemented for only part of the family's derivatives. Ron -- Metrowerks Community Forum is a free...
Hi all, The special edition version of the CodeWarrior assembler has STRUCT/ENDSTRUCT directives. One can define a structure: dataStruct: STRUCT var1: ds.b...
Michael Huslig
mhuslig@...
Oct 6, 2004 9:51 pm
8382
Having now played with CW in assembly a little, I think I can answer. You need to enable this feature. I enabled mine by clicking On the target tab double...
What is the maximum expected data length for S19 records ? I found that program data records (S1, S2) are typically 32 data bytes long, while S0 record is...
Dear All Now i want to interface external serial EEPROM to store special data inoder to calibration. but it's not easy for me to interface my processor with...
There is no length limitation defined for S-Records (to my knowledge). The S0 record is a 'descriptive' one, and usually contains the file name. With...
I have already set the option and have used the STRUCT/ENDSTRUCT directives. I have declared variables of a structure type. What I haven't tried is declaring...
Michael Huslig
mhuslig@...
Oct 7, 2004 1:29 pm
8388
... Old man pages say: "An S-record will be less than or equal to 78 bytes in length." Google finds http://www.compusmart.ab.ca/rc/TechTips/srecords.html but...
I am not aware that S-records have any inherent limitation except for the size of the length descriptor (two bytes). However, there are two practical ...