Programming Attiny fuses help

I have a hex code dating from 2009 that uses an old command line tool for com/parallel port programmers called avrsp to program the chip on an Attiny26 with the commands below

"avrsp -PC1 -FL11100100 -W default\mycode.hex"

I think the command -FL11100100 sets the fuse values but don't understand how to convert this to the actual fuse settings to set in my programmer, any help would be much appreciated

Source code for avrsp and some information on the fuse settings can be found here: AVRSP branch by BKK

1 Like

Thank you for the links, I could not find it anywhere hopefully I can just program the chip after building an old style programmer

I'd expect that means "Fuse Low 0b11100100" (0xE4)
According to AVR® Fuse Calculator – The Engbedded Blog , that's a pretty tame "use the 8MHz internal clock" configuration.

1 Like

Hi thanks for this I managed to find the correct syntax in the programmer help, its in binary so yes works out to E4 - many thanks for the reply

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.