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:
parent
f8f3c00d07
commit
074bd00bcb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue