https://github.com/timofurrer/avra-atmega2560
This repository is a clone of avra version 1.3.0 with additional fixes to support the ATmega2560 chip
https://github.com/timofurrer/avra-atmega2560
Last synced: 10 months ago
JSON representation
This repository is a clone of avra version 1.3.0 with additional fixes to support the ATmega2560 chip
- Host: GitHub
- URL: https://github.com/timofurrer/avra-atmega2560
- Owner: timofurrer
- Created: 2014-04-29T15:57:17.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-29T15:58:56.000Z (about 12 years ago)
- Last Synced: 2025-04-07T17:21:14.291Z (about 1 year ago)
- Language: C
- Size: 801 KB
- Stars: 5
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# avra with ATmega2560 support
> This repository is a clone of avra version 1.3.0 with additional fixes to support the ATmega2560 chip
***
**Original Repository:** http://sourceforge.net/projects/avra/files/1.3.0/
**Avra Version**: 1.3.0
**Platform**: GNU/Linux
*Tested on Debian GNU/Linux*
## Installation
First you have to clone this repository to get the ATmega2560 on linux:
git clone https://github.com/timofurrer/avra-atmega2560.git avra-atmega2560
cd avra-atmega2560
After cloning you can configure and compile `avra` with the Makefile in the `src` directory
cd avra-1.3.0/src/
./bootstrap
./configure
make
make install
*Note: you may need root privileges to install it on your system with `make install`*
## Compile assambler code
You can easily compile your `*.asm` files with the following command:
avra test.asm
## Flash hex file to controller
To flash the hex file to the controller you need `avrdude`:
avrdude -p m2560 -c stk600 -U flash:w:test.hex:i