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
$ time BOARD=feather-nrf52840-sense make -C tests/drivers/nrf802154 info-boards-supported
...
BOARD=feather-nrf52840-sense make -C tests/drivers/nrf802154 0.53s user 0.25s system 104% cpu 0.744 total
$ time make -C tests/drivers/nrf802154 info-boards-supported BOARD=feather-nrf52840-sense
...
make -C tests/drivers/nrf802154 info-boards-supported 3.49s user 6.08s system 99% cpu 9.585 total
Expected results
outputs should be correct everywhere and take roughly the same amount of time
Actual results
the opposite
Versions
Operating System Environment
----------------------------
Operating System: "Debian GNU/Linux" "12 (bookworm)"
Kernel: Linux 6.1.0-26-amd64 x86_64 unknown
System shell: /usr/bin/dash (probably dash)
make's shell: /usr/bin/dash (probably dash)
...
Installed development tools
---------------------------
ccache: ccache version 4.7.5
cmake: cmake version 3.25.1
cppcheck: missing
doxygen: 1.9.4
git: git version 2.39.5
make: GNU Make 4.3
openocd: Open On-Chip Debugger 0.12.0
python: missing
python2: missing
python3: Python 3.11.2
flake8: error: /usr/bin/python3: No module named flake8
coccinelle: spatch version 1.1.1 compiled with OCaml version 4.13.1
The text was updated successfully, but these errors were encountered:
Description
@Lukas-Luger found some issues with the reported supported boards for an application:
make info-build
andmake info-boards-supported
show different results whenBOARD
is defined in the environment (beforemake
).BOARD
is given as a make variable (aftermake
)Steps to reproduce the issue
wrong (missing, e.g.,
nrf52840dk
):correct (afaict):
wrong (should restrict to nrf52 CPU):
wrong (should restrict to nrf52 CPU):
significant delay difference:
Expected results
outputs should be correct everywhere and take roughly the same amount of time
Actual results
the opposite
Versions
The text was updated successfully, but these errors were encountered: