![]() |
STM32F756BGT6 - No valid STmicro device ID found - 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: STM32F756BGT6 - No valid STmicro device ID found (/thread-225.html) |
STM32F756BGT6 - No valid STmicro device ID found - PDonchev - 08-05-2025 The MCU is correctly detected via the ST-Link utility: Code: 21:29:20 : ST-LINK SN : * However, in EmBitz 2.64 using EBlink 6.02-[198], the following issue occurs: Code: EBlink version 6.02-[198] by Gerard Zagema I resolved the issue by editing the stm32.script file. Specifically, I replaced: ["M7", [0x5C001000], with ["M7", [0xE0042000], After this change, device detection in EmBitz started working correctly. RE: STM32F756BGT6 - No valid STmicro device ID found - embitz - 09-05-2025 Hi, The correct way to solve this is Code: ["M7", [0x5C001000, 0xE0042000], You may add additional registers to the array. There are also M7 mcu's which are using 0x5C001000 and otherwise those are not findable. I will add this to the script, thanks! P.s The 6.02(201) on github is modified https://github.com/EmBitz/EBlink RE: STM32F756BGT6 - No valid STmicro device ID found - PDonchev - 09-05-2025 Hi, Thanks for the clarification! |