Intel® System Debugger User Guide
ID | Date | Version | Classification |
---|---|---|---|
648476 | 10/17/2024 | Confidential |
Troubleshooting
- Issue
Console (Debug console or another one) does not display commands that you type.
- Workaround
Resize the console window.
- Issue
Errors occur during application builds (for example, Python* errors on the Zephyr base)
- Workaround
Create a new workspace. If the error persists,create a new tree folder:
~/system_debugger_new/workspace .
- Issue
IFWI reboots when
gdbserverproxy connects to it- Workaround
Follow the steps below:
Go to ROM memory address to load the program. In the debugger console, execute the following instructions:
monitor load si
If the debugger breaks into 0x700… address, you can load the program (go to the next step). If the address is still 0x600…, execute the instructions again.
In the debugger console, execute the following instructions:
load <path-to-binary>/zephyr.elf
This will load the program and set the program counter to
__start .
- Issue
Python* package is missing
- Workaround
Install a package in the virtual environment via Eclipse* IDE:
Click Open Console button and select Command Shell Console.
In the opened dialog box, set Connection Type and Connection name to Local.
Click OK.
Local shell opens in the Console view. Execute the following command to install a Python* package:
pip install <package-name>
- Issue
Error with environment variable ZEPHYR_EXTRA_MODULES prepending
null: .- Workaround
Modify environment variables to apply “Replace native enfironment with specified one”.
In Eclipse* IDE, open Window > Preferences.
Under C/C++ node, unfold Build and select Environment.
Select Replace native environment with specified one.
Modify the following variables to a different value. For example:
ZEPHYR_EXTRA_MODULES
<path_to_pse>/ehl_pse-fw/ CONFIG_DEBUG
n
Click Apply and close, and set the correct value again.
Under C/C++ node, unfold Build and select Environment.
Select Replace native environment with specified one.
Modify the following variables to the correct value:
ZEPHYR_EXTRA_MODULES
<path_to_pse>/ehl_pse-fw/services CONFIG_DEBUG
y
Click Apply and close.
Clean the project and build again.