nRF Connect SDK Intermediate Lesson 2 exercise 2, unable to locate the path

Hi, I need help with these tasks in Lesson 2 ex 2 (step 7. and 8.)

Looking for that path and python file everywhere, unable to find it,  I don't have zephyr folder, none of these.

Need help where I can get it from?

Thank you!

7. Convert the file into a bin file.

Run the Python script coredump_serial_log_parser.py located in ncs_install_path/zephyr_version/zephyr/scripts/coredump/coredump_serial_log_parser.pyto convert the text file to a bin file used in the next step.

python ncs_install_path/zephyr_version/zephyr/scripts/coredump/coredump_serial_log_parser.py dump.log dump.bin

8. Start the custom GDB server.

Inside the same directory as step 7, start the custom GDB server using the script coredump_gdbserver.py, located in ncs_install_path/zephyr_version/zephyr/scripts/coredump/coredump_gdbserver.py, with the core dump binary log file we created in step 7, and the Zephyr ELF file as parameters which can be found inside build/zephyr/zephyr.elf.

python /ncs_install_path/zephyr_version/zephyr/scripts/coredump/coredump_gdbserver.py build/zephyr/zephyr.elf dump.bin -v
Related