일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- C++
- atmel
- avr-gcc
- Visual Studio
- Debug
- Debugging
- AArch64
- UART
- 리눅스
- esp32
- GPIO
- BeagleBone
- raspberrypi
- Raspberry
- vscode
- 라즈베리파이
- 디버깅
- 아두이노
- bare metal
- QEMU
- Arduino
- USART
- buildroot
- Linux
- nucleo
- STM32
- AVR
- yocto
- Visual Studio Code
- platformio
- Today
- Total
목록Embedded/Yocto Project (10)
임베디드를 좋아하는 조금 특이한 개발자?

1. 개발 환경WSL2 (Ubuntu 22.04 LTS)개발 보드 : Raspberrypi 4 2. 필요 패키지 설치sudo apt install build-essential chrpath cpio debianutils diffstat file gawk gcc git iputils-ping libacl1 liblz4-tool locales python3 python3-git python3-jinja2 python3-pexpect python3-pip python3-subunit socat texinfo unzip wget xz-utils zstd 3. Poky 코드 준비git clone git://git.yoctoproject.org/pokycd pokygit checkout scarthgap 저는 Sc..

1. 개발 환경WSL2 (Ubuntu 22.04 LTS) 2. Poky 코드 준비sudo apt install build-essential chrpath cpio debianutils diffstat file gawk gcc git iputils-ping libacl1 liblz4-tool locales python3 python3-git python3-jinja2 python3-pexpect python3-pip python3-subunit socat texinfo unzip wget xz-utils zstdgit clone git://git.yoctoproject.org/pokycd pokygit checkout kirkstone저는 Kirkstone버전을 사용하였습니다. 아래 링크를 통해 최신의 Y..

개발 환경 OS : Ubuntu 22.04 LTS (WSL2) 개발 보드 : beaglebone black 공식 홈페이지의 설치 방법을 따라 설치 하였습니다.https://crosstool-ng.github.io/docs/install/ Installing crosstool-NGBefore installing crosstool-NG, you may need to install additional packages on the host OS. Specific instructions for several supported operating systems and distributions are provided here. Note that not all the dependencies are currently de..

해당 문제의 발생 원인은 gperf 버전이 업데이트 되면서 발생하는 문제입니다. 해당 문제를 해결하기 위해서는 3.0.4버전으로 다운그레이드를 할 필요가 있습니다. 먼저 다음의 명령어로 기존에 설치되었던 gperf 를 삭제합니다.sudo apt-get --purge remove gperf 이제 3.0.4버전의 gperf를 설치하도록 하겠습니다.wget http://ftp.gnu.org/gnu/gperf/gperf-3.0.4.tar.gzcd ./gperf-3.0.4.tar.gz./configuremakesudo make install 위 명령어를 사용하여 설치를 완료하였다면 /usr/local/bin 폴더에 gperf파일이 있는 것을 확인 할 수 있습니다.해당 파일을 저희가 터미널에서 사용하기 위해서 파..