@brgl@agherzan I think we should change the behaviour of the switch. CI should add ONIRO_ENABLE_ACM0 or similar not users add ONIRO_NO_ACM0 to make blinky working again
@lucafavaretto workaround is as simple as: echo ONIRO_NO_ACM0 = "1" >> conf/local.conf
@lucafavaretto This is not a regression though - it used to work like that ever since I started working on oniro zephyr. The app waits for the ACM0 to be opened on the host. The QA team asked me explicitly to keep it this way.
@brgl can you elaborate please? which QA team? Both Oniro and Zephyr have in their documentation something like "After flashing, the LED starts to blink. Blinky does not print to the console.". from user's point of view this "feature" is completely broken.
As I mentioned this logic should be reverted to "blink by default", wait for connection if flag has been specified
@landgraf if you take current dunfell oniro and build the blinky image, it won't start blinking until you start a console on the ACM0 device. It was Chase Qi who requested it be kept the same in kirkstone IIRC. I don't often look at the docs but maybe they're wrong. I agree it's a broken idea hence this variable.
RESULTS:RESULTS - zephyr.ZephyrTest.test_boot_zephyr: PASSED (6.10s)SUMMARY:context () - Ran 1 test in 6.105scontext - OK - All required tests passed (successes=1, skipped=0, failures=0, errors=0)Traceback (most recent call last): File "/mnt/builds/oniroproject/goofy/sources/oe-core/meta/lib/oeqa/core/decorator/__init__.py", line 35, in wrapped_f return func(*args, **kwargs) File "/mnt/builds/oniroproject/goofy/sources/meta-zephyr/meta-zephyr-core/lib/oeqa/runtime/cases/zephyr.py", line 19, in test_boot_zephyr line = self.target.serial_readline().decode("utf-8") File "/mnt/builds/oniroproject/goofy/sources/oe-core/../meta-zephyr/meta-zephyr-core/lib/oeqa/controllers/zephyrtargetcontrol.py", line 62, in serial_readline return self.runner.serial_readline() File "/mnt/builds/oniroproject/goofy/sources/oe-core/../meta-zephyr/meta-zephyr-core/lib/oeqa/utils/qemuzephyrrunner.py", line 225, in serial_readline self.log(line) File "/mnt/builds/oniroproject/goofy/sources/oe-core/meta/lib/oeqa/utils/qemurunner.py", line 118, in log self.msg += msg File "/mnt/builds/oniroproject/goofy/sources/oe-core/meta/lib/oeqa/core/decorator/oetimeout.py", line 18, in _timeoutHandler raise OEQATimeoutError("Timed out after %s "oeqa.core.exception.OEQATimeoutError: Timed out after 120 seconds of execution
failed in this way with and without the change. Is it supposed to work?
Hi @landgraf I haven't tried zephyr testing with OEQA framework on qemu. We plan to run testing on the physical board directly. I think the trace shows that there is no output on the seiral console after 2 minutes wait.
Thanks for the testing on the board. I will create an issue to enable testing on the nano board in CI. CC @sradakovi@aszpilko
Hi @landgraf I tested with you branch on my nano board. The early-sleep.bin can be flashed, and /dev/ttyACM0 does exist after flashing. This is good.
However, even after power off/on, I don't see any output on the /dev/ttyACM0 port. I am not sure if it is just me. Would you please check if you see any output on you board when you have time?
Here is the steps I used.
Press the reset button twice to enter flashing mode.
Flash the test image with command: ./bossac --port=/dev/ttyACM0 -d -U -i -e -w early-sleep.bin. Log: https://paste.debian.net/1245706/
Check test output with minicom(115200 8N1) on the /dev/ttyACM0 port. No output observed.
For zephyr testing, we need to collect test output from the serial port to determine it is passing/failing. Make sense? This request probably should be covered in a different issue. It has been discussed before.
@landgraf This has been reported on kirkstone before. I remember @brgl figured it is toolchain related. It works on dunfell, but doesn't work on kirkstone.
@chaseqi right. We cannot fix all possible issue with one change. The MR fixes blinky usecases and (hopefully) doesn't introduce regression in testing.
Please file new issue to track the missed output bug. It may have same root cause as oniro#584 (moved)