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
The root cause is in a way generate_hal_matrix.py parsed src/modm/platform/clock/stm32/module.lb while populating file_cache.
It looks for (has_driver|get_driver|get_all_drivers) regexp to infer hardware names, but this specific file has a large section marked TODO: Move this data into the device files that touches random drivers, i.e. checks flash latency and usb prescaler. As a result, mapping for System Clock is {'gclk', 'rcc', 'flash', 'usb'}.
The text was updated successfully, but these errors were encountered:
The root cause is in a way
generate_hal_matrix.py
parsedsrc/modm/platform/clock/stm32/module.lb
while populatingfile_cache
.It looks for
(has_driver|get_driver|get_all_drivers)
regexp to infer hardware names, but this specific file has a large section marked TODO: Move this data into the device files that touches random drivers, i.e. checks flash latency and usb prescaler. As a result, mapping forSystem Clock
is{'gclk', 'rcc', 'flash', 'usb'}
.The text was updated successfully, but these errors were encountered: