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
During the test for PR #239 it was seen that a parameter number issue was introduced into the example_power_gating_core app, preventing it from being built. The problem was existing before, but was hiding in a #ifdef that evaluated as false, so the code was not compiled.
This blocks the deployment of the CI of #239
Below the output of the compiler. This was built with GCC on the X-HEEP builder docker container.
/__w/x-heep/x-heep/sw/applications/example_power_gating_core/main.c: In function 'main':
/__w/x-heep/x-heep/sw/applications/example_power_gating_core/main.c:126:5: error: too few arguments to function 'gpio_irq_set_trigger'
126 | gpio_irq_set_trigger(&gpio, 1 << 31, kGpioIrqTriggerLevelHigh);
| ^~~~~~~~~~~~~~~~~~~~
In file included from /__w/x-heep/x-heep/sw/applications/example_power_gating_core/main.c:16:
/__w/x-heep/x-heep/sw/device/lib/drivers/gpio/gpio.h:224:15: note: declared here
224 | gpio_result_t gpio_irq_set_trigger(const gpio_t *gpio,
| ^~~~~~~~~~~~~~~~~~~~
make[4]: *** [CMakeFiles/main.elf.dir/build.make:66: CMakeFiles/main.elf.dir/applications/example_power_gating_core/main.c.obj] Error 1
The text was updated successfully, but these errors were encountered:
JuanSapriza
changed the title
App "" cannot be built
App "example_power_gating_core" cannot be built
May 15, 2023
During the test for PR #239 it was seen that a parameter number issue was introduced into the
example_power_gating_core
app, preventing it from being built. The problem was existing before, but was hiding in a#ifdef
that evaluated asfalse
, so the code was not compiled.This blocks the deployment of the CI of #239
Below the output of the compiler. This was built with GCC on the X-HEEP builder docker container.
The text was updated successfully, but these errors were encountered: