[esp-matter][light][1] 프로젝트 환경설정 / build/flash/monitor : ESP matter light 프로젝트를 esp32c6 보드에 build/flash 한후 Samsung SmartThings 앱을 사용해 on/off 동작 테스트 하기. 목차 ▶ 준비사항 ↓ esp-matter 소스코드 github 에서 clone 하기git clone --recursive https://github.com/espressif/esp-idf.git ↓ github 에서 복사한 esp-matter 설치하기cd esp-matter./install.sh ↓ 환경변수 설정cd esp-idf; source ./export.sh; cd ..cd esp-matter; source ./export.sh; cd .. ↓ 위의 과정이 정상적으로 되었으면 esp-matter/exam.. ESP32 2024. 1. 2. 20:23
[esp-idf] idf.py 사용법 (build,flash,monitor,create-project,....., ) : idf.py 는 파이션 프로그램으로 프로젝트에 대한 빌드/다운로드/모니터링 ....등을 명령창에서 할수 있는 유틸로 파일위치는 esp-idf/tools/ 아래에 있습니다. 사용법만 한번 정리해 봤습니다. 목차▶ ubuntu 상에서 esp-idf 환경설정 : esp-idf 설치폴더의 export.sh 파일을 실행해 줍니다. $ source path/to/your/direcotory/export.sh ▶build ↓ build : 현재 디렉토리안의 프로젝트 빌드더보기xxx@ubuntu22:~/Project/esp32/myApp1$ idf.py buildSetting IDF_PATH environment variable: /home/xxx/esp/esp-idfExecuting a.. ESP32 2023. 11. 30. 16:24
[NCS] nRF52 장치 VS Code 에서 flash 에러 해결하기 : 별 내용은 없고 참고용 자료입니다. 에러는 다음처럼 나오고 Access protection is enabled, can't read device version [error] [ nRF52] - Access protection is enabled, can't read device version. ERROR: The operation attempted is unavailable due to readback protection in ERROR: your device. Please use --recover to unlock the device. NOTE: For additional output, try running again with logging enabled (--log). NOTE: Any gener.. 미분류 항목 2023. 6. 12. 12:08
[NCS] New Application Create/Build/Flash/Debug : Visual Studio Code 툴의 NRF CONNECT extention 안에서 "Create a new application " 항목을 테스트해 봤습니다. 크게 프로젝트 만들기 , 빌드 , 플래시 로 나눠지고 각각의 단계별 UI 를 첨부합니다. 1> 프로젝트 만들기 ▶ Visual Studio Code 실행 ▶ nRF connect 아이콘 클릭후 "Create a new application" 선택하기 ▶ 앱 설정화면 에서 nRF Connect SDK/ Toolchain 위치 지정 및 앱 위치/템플릿/이름 설정한후 마지막의 "Create Application" 을 눌러줍니다. Application template 에서 blinky 만 입력하면 관련 예제가 다 보이니 참고하세요. ▶ 작성자를 신.. 미분류 항목 2023. 5. 25. 16:52