soc: intel_adsp: Change loop time in adsplog.py

When build and run the tests manually with west, we could
build successfully, but can not get output after flashing.
It should rely on adsplog.py to get output,
and the cause is loop time too short to get output.
So, we change the loop time back to 1.

Signed-off-by: Lixin Guo <lixinx.guo@intel.com>
This commit is contained in:
Lixin Guo 2021-10-22 16:00:18 +08:00 committed by Anas Nashif
commit 074bd00bcb

View file

@ -108,7 +108,7 @@ def read_hist(start_slot):
sys.stdout.write("===\n=== [ADSP Device Reset?]\n===\n")
sys.stdout.flush()
reset_logged = True
time.sleep(0.1)
time.sleep(1)
return (0, 0, "")
reset_logged = False