pyOCD(5)
-
[pyocd] Target type stm32f401retx를 인식 할 수 없다는 에러 발생 시 해결 방법
문제 발생 pyocd를 이용하여 Target MCU에 Flash Write를 수행 하는 중, 아래와 같은 에러가 발생 하였다. Exception : Target type stm32f401retx not recognized. Use 'pyocd list --targets' to see currently available target types. See https://pyocd.io/docs/target_support.html> for how to install additional target support. 해결 방법 아래 명령 수행하여 pyocd package를 설치 한다. pyocd pack install stm32f401retx
2022.10.12 -
pyocd "No available debug probes are connected" 문제 해결
개발 환경 - Ubuntu 문제 pyocd list 수행 시, "No available debug probes are connected" 에러 발생 해결 방법 libusb-1.0.0-dev 설치 후 재부팅 github에서 pyOcd 다운로드 후 아래 명령을 수행해서 rules.d를 시스템에 복사 $cd pyOcd/udev $sudo cp *.rules /etc/udev/rules.d Plug in board $cd pyOcd/udev $ sudo cp *.rules /etc/udev/rules.d $ venvPyOcd) kaizen@ubuntu:~/Workspace$ pyocd list # Probe Unique ID ------------------------------------------------..
2022.10.03 -
[pyocd] 라즈베리파이에서 ST-LINK 장치 인식 하기
udev(userspace device)란 https://kaizen8501.tistory.com/297 참고 ST-LINK를 위한 udev rules 위 자료를 다운로드 해서 라즈베리파이에 복사 한 후, 아래 명령으로 udev rules 폴더에 복사 한다. $ sudo cp *.rules /etc/udev/rules.d 이후, ST-LINK와 연결된 USB를 재 연결 하고 pyocd list 명령을 수행하면 아래와 같이 장치가 인식 된 것을 확인 할 수 있다.
2022.09.29 -
How to use GDB environment on Eclipse with pyOCD
How to use GDB environment on Eclipse with pyOCDEnvironmentTarget : WIZwiki_w7500 OS : Linux Mint Kernel : 3.15.8-031508featured imageSetting for pyOCDDownload pyOCD and installrefer to this document.Run pyOCD gdb server script$ sudo python test/gdb_test.py [sudo] password for kaizen: INFO:root:Waiting for a USB device connected INFO:root:new board id detected: 22010203066B9E1CFB9743E5 INFO:root..
2015.10.08 -
How to use pyOCD for new target MCU like W7500
How to use pyOCD for new target MCU like W7500What about pyOCDpyOCD is an Open Source python 2.7 based library for programming and debugging ARM Cortex-M microcontrollers using CMSIS-DAP. Linux, OSX and Windows are supported.You can use the following interfaces: From a python interpretor: halt, step, resume executionread/write memoryread/write block memoryread-write core registerset/remove hardw..
2015.10.08