We are using the USBDM open source BDM interface. Unfortunately, there does not seem to be support for MC13234 or MC13237 MCUs. Is there plans to do so?
I understand there is documentation to create such support ourselves, unfortunately, we don't have the time to spare.
Thanks in advance.
Mark
They are listed in the hcs08_devices.xml file, so I would expect they are already supported.
Regards,
Witztronics
Hi Mark,
No plans since I don't have any hardware to develop with . The bare chips look a bit too hard to use with a mock-up as well.
If you have a suitable board and USBDM hardware you can try adding the following entry to the hcs08_devices.xml file.
This is based on the description in the MC13237RM manual.
<device family="HCS08" name="MC1323x"> | |
<memory type="ram"> | |
<memoryRange start="0x000080" end="0x0017FF" /> | |
</memory> | |
<memory pageAddress="0x0078" registerAddress="0x1820" type="flash" securityAddress="0xFFB0"> | |
<securityEntryRef ref="HCS08-default-security" /> | |
<memoryRange start="0x002080" end="0x007FFF" /> | |
<memoryRange start="0x008000" end="0x00BFFF" pageStart="0" pages="128K" /> | |
<memoryRange start="0x00C000" end="0x00FFFF" /> | |
</memory> | |
<sdid value="0x2044" /> <!-- MC13234 --> | |
<sdid value="0x3044" /> <!-- MC13237 --> | |
</device> |
PS: OSBDM is not the same as USBDM
bye