You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flash different build-variants on a PYBV11 and call sys.implementation[2]
Expected behaviour
It would be beneficial, if sys.implementation[2] would differ for each variant. This is required by octoprobe to verify if the correct variant is flashed.
Observed behaviour
PYBV11
build: PYBV11
>>> sys.implementation[2]
'PYBv1.1 with STM32F405RG'
build: PYBV11-DP_TREAD
>>> sys.implementation[2]
'PYBv1.1 with STM32F405RG' <<Wrong: I am missing '-DP_TREAD'
In contrast the RP2
build: RP2
>>> sys.implementation[2]
'RP2350'
build: RP2-RISCV
>>> sys.implementation[2]
'RP2350-RISCV' <<Ok: '-RISCV' is there