일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- atmel
- USART
- Visual Studio
- C++
- raspberrypi
- Linux
- 디버깅
- Raspberry
- Visual Studio Code
- AVR
- esp32
- BeagleBone
- vscode
- yocto
- Arduino
- STM32
- 아두이노
- platformio
- AArch64
- QEMU
- 리눅스
- GPIO
- 라즈베리파이
- Debug
- UART
- bare metal
- Debugging
- buildroot
- nucleo
- avr-gcc
- Today
- Total
목록Embedded (61)
임베디드를 좋아하는 조금 특이한 개발자?

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..

- 개발 환경 개발 보드 : NUCLEO-F429ZI1. 서론 STM32 MCU의 모든 기능을 사용하기 위해서는 STM32 CubeIDE(그외 IAR, KEIL)를 사용하는 것이 좋다고 생각합니다. 하지만 아두이노에서 개발하는 것이 편한 사람들이 많으며 또한 방대한 라이브러리 또한 무시할 수 없습니다. 또한 다행인 것이 PlatformIO를 사용하여 Visual studio code에서 arduino 처럼 개발할 수 있는 2가지 토끼를 잡을 수 있습니다. 단, 주의 사항으로 세부적인 설정을 할 수 없으므로 다음과 같은 기능이 필요 한 사람은 CubeIDE로 개발 하는 것을 추천한다. 1. Clock를 세부 조정 해야하는 개발자 2. DMA와 같은 기능을 사용해야 하는 개발자 2. PlatfromI..

- 개발 환경개발 보드 : Arudino R4 wifi 1. 서론https://github.com/microsoft/vscode-arduino/issues/1760 VS Code Arduino Extension Removal from Marketplace · Issue #1760 · microsoft/vscode-arduinoDear Arduino Extensions customers, Thank you for your continued support and enthusiasm for the Arduino extension and platform. Your feedback and engagement have been invaluable, and we’re incredibl...github.com 오랜만..

1. 애러 증상ESP32로 아두이노 스케치을 업로드할 때 위와 같은 에러가 발생할 수 있다. 2. 해결 방법Baudrate를 921600보다 낮게 설정하면 해결 된다. - Baudrate 설정 방법Tools -> Upload speed -> 460800 선택 3. 증상 해결

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..