How to Spot Fake STM32 MCU.
I recently got trouble after my STM32F103CB (128KB/20KB) started to misbehave.
I ask few guys but seems no answer.
Is there any way one can detect loosely cloned STM32 MCU?
I recently got trouble after my STM32F103CB (128KB/20KB) started to misbehave.
I ask few guys but seems no answer.
Is there any way one can detect loosely cloned STM32 MCU?
Faked STM32, with a marking STM32F, do not come out of nowhere. If they have any functionality at all, they are relabeled clones. These clones all have a newer CortexM core. Read the core revision in the AP IDR register.
/* Test for non-genuine parts with Core rev 2*/
if ((ap->idr >> 28) > 1) {
t->driver = "STM32F1 (clone) medium density";
DEBUG_WARN("Non-genuine STM32F1\n");
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.