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

https://www.raspberrypi.com/documentation/computers/legacy_config_txt.html#init_uart_baudconfig.txt options - Raspberry Pi Documentation" data-og-description="The official documentation for Raspberry Pi computers and microcontrollers" data-og-host="www.raspberrypi.com" data-og-source-url="https://www.raspberrypi.com/documentation/computers/legacy_config_txt.html#init_uart_baud" data-og-url="http..
https://downloads.raspberrypi.com/raspbian/images/ Index of /raspbian/images downloads.raspberrypi.com위 사이트에 들어가 Release한 날짜에 해당하는 OS 버전을 골라 다운받으면 됩니다.

개발 환경 H/W : raspberryPI 3 B+ OS : raspbian 4.19 https://www.youtube.com/watch?v=FV6P5eRmMh8&list=PLc7W4b0WHTAXkCy3RUAO0Eqx52ALTLUdq&index=3 현재 이 글은 위 영상을 제 나름대로 해석하고 참고하여 작성하였습니다. 더 자세한 정보를 원한다면 위 영상을 보는 것을 추천합니다. 대부분의 언어를 배우게 되면 하나의 관례처럼 Hello world를 출력하는 프로그램을 작성합니다. 처음 어셈블리를 배우는 사람으로서 이번에 어셈블리 언어로 HelloWorld를 출력하고 기본적인 어셈블리의 실행과정을 살펴보겠습니다. .global _start .section .text _start: mov r7, #1 mov ..