EmBitz
STM32C0 bug C0 should be c0 - Printable Version

+- EmBitz (https://www.embitz.org/forum)
+-- Forum: EBlink (https://www.embitz.org/forum/forum-3.html)
+--- Forum: Bug report (https://www.embitz.org/forum/forum-9.html)
+--- Thread: STM32C0 bug C0 should be c0 (/thread-206.html)



STM32C0 bug C0 should be c0 - BuFran - 08-10-2024

Dear Gerard,

  I found bug in STM32C0 support in eblink scripts in latest deb archive simple casing problem 
(all families are lowercase but C0 is specified uppercase in stm32.script and Linux is case
sensitive in files)


Simple change in stm32.script will fix problem:


["M0+", [["l0", [ 0x417, 0x425, 0x447, 0x457 ]],
         ["gx", [ 0x466, 0x456, 0x460, 0x467 ]],
         ["C0", [ 0x443, 0x453 ]]]],


to

["M0+", [["l0", [ 0x417, 0x425, 0x447, 0x457 ]],
         ["gx", [ 0x466, 0x456, 0x460, 0x467 ]],
         ["c0", [ 0x443, 0x453 ]]]],


it is for EBlink version 5.13-[190]

and it works now ! Thanks for Your nice part of software :-)


Best regards,

   Frantisek Burian


RE: Support STM32C0 - embitz - 08-10-2024

Thanks!


RE: STM32C0 bug C0 should be c0 - embitz - 08-10-2024

Solved in 5.13-[193]