Using atmel studio to build the assembly and then avrdude to push it to the Attiny85
The current basic config is to:
- Install WinAvr 1a. copy over the msys driver from the pre-built assembly folder to the utils/bin folder under the winavr installation directory
- Install Atmel Studio
- At the moment create an assembly project to pull in headers for the attiny
- Copy over assembly from the folder ~4. Or cross your fingers and open the assembly file into your project/open your project
- Build it (Not debug or run)
- Use an external tool with avrdude to push it to the attiny
- Cross your fingers
The external tool should only require these arguments
-C"C:\WinAVR-20100110\bin\avrdude.conf" -v {program.verify} -pattiny85 -cstk500v1 -PCOM4 -b19200 -Uflash:w:$(ProjectDir)Debug/$(TargetName).hex:i
which are portable. The command we are excuting itself is just the avrdude.exe executable