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
I disabled the optional probe in a custom my_machine.h (#define PROBE_ENABLE 0 on line 84). The build failed as It exposes an undeclared probeConfigure() on line 1994 of driver.c. Definition of probeConfigure() (line 1240) is only done if PROBE_PIN is declared (e.g. generic_map line 106) which is dependent on PROBE_ENABLE. Enabling the (unused) probe allowed the build to work. Not sure if enabling the probe (on an unused input pin) would cause other issues.
The text was updated successfully, but these errors were encountered:
I disabled the optional probe in a custom my_machine.h (#define PROBE_ENABLE 0 on line 84). The build failed as It exposes an undeclared probeConfigure() on line 1994 of driver.c. Definition of probeConfigure() (line 1240) is only done if PROBE_PIN is declared (e.g. generic_map line 106) which is dependent on PROBE_ENABLE. Enabling the (unused) probe allowed the build to work. Not sure if enabling the probe (on an unused input pin) would cause other issues.
The text was updated successfully, but these errors were encountered: