It is a good project to familiarise myself with embedded systems development.
- AVR-GCC
- Make
- avrdude (for flashing the microcontroller)
- Double ATmega32
- Install AVR-GCC:
- On Debian/Ubuntu:
sudo apt-get install gcc-avr avr-libc
- On macOS:
brew tap osx-cross/avr && brew install avr-gcc
- On Windows: Install AVR-GCC
- Download and install the AVR-GCC package from the link.
- Ensure the AVR-GCC binaries are added to your system PATH.
- On Debian/Ubuntu:
- Install Make:
- On Debian/Ubuntu:
sudo apt-get install make
- On macOS:
brew install make
- On Windows: Install Make for Windows:
- Download and install Make from the link.
- Ensure the Make binaries are added to your system PATH.
- On Debian/Ubuntu:
- Clone the repository:
git clone https://github.com/hussein-shamy/AVR-mini-projects.git cd AVR-mini-projects
- Build the project:
make
- Flash the firmware:
make flash