# Arduino基础环境 **Repository Path**: Aunix/arduino-basic-environment ## Basic Information - **Project Name**: Arduino基础环境 - **Description**: arduino基础环境,使用Makefile编译。atmega328p芯片。 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 1 - **Created**: 2021-01-22 - **Last Updated**: 2025-06-20 ## Categories & Tags **Categories**: chips **Tags**: None ## README # Arduino基础环境 - 默认atmega328p芯片,其他环境请自行修改`pins_arduino.h` ## 环境安装 ```shell > apt update > apt install gcc-avr avr-libc avrdude gdb-avr ``` ## 编译代码 ``` > make clean && make ``` ## 烧录 ``` > avrdude -v -patmega328p -carduino -PCOM3 -b115200 -D -Uflash:w:main.hex:i ```