CodeWarrior Special Edition

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

CodeWarrior Special Edition

Jump to solution
3,787 Views
ajohn
Contributor I
Hello!
I am using the Code Warrior Special Edition vrs. 4.2 for smaller HC908JL3 projects. Now I plan to use a HC908JL8, but it is not directly supported by my Code Warrior version. Which files do I have to add / modify to get HC908JL8 support?
 
Thank you and best regards,
Andreas John
Labels (1)
Tags (1)
0 Kudos
1 Solution
981 Views
CrasyCat
Specialist III

We did not integrate support for new derivatives in older version of the tools.

To get support for HC08JL8, you would recommend you to upgrade to a newer version of the HC08 tools. Current special edition you can download is V5.0.

It is also free of charge for customer up to 16K of C source code.

View solution in original post

0 Kudos
2 Replies
981 Views
Nabla69
Contributor V

Hi John,

 

If the only difference is the RAM/Flash size (it's what I think), you can only modify the .PRM file of your project to declare the new memory space.
Compare the datasheet to make sure only RAM/Flash are different.

SEGMENTS /* here all RAM/ROM areas of the device are listed. Used in PLACEMENT below. */
 Z_RAM  = READ_WRITE 0x0060 TO 0x00FF;
 RAM    = READ_WRITE 0x0100 TO 0x015F;
 ROM    = READ_ONLY  0xDC00 TO 0xFBFF;
END

Cheers,

Alvin.
982 Views
CrasyCat
Specialist III

We did not integrate support for new derivatives in older version of the tools.

To get support for HC08JL8, you would recommend you to upgrade to a newer version of the HC08 tools. Current special edition you can download is V5.0.

It is also free of charge for customer up to 16K of C source code.

0 Kudos