Skip to content

Commit

Permalink
Merge pull request #95 from OpenSourceLightshows/kurt/extract-upload-…
Browse files Browse the repository at this point in the history
…eeprom

kurt/extract-upload-eeprom
  • Loading branch information
livingkurt authored Dec 8, 2024
2 parents 24e7bcc + 86ea579 commit 1599459
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions HeliosEmbedded/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -232,12 +232,27 @@ get_fuses:
####### EEPROM #######
######################

upload_with_default_eeprom: upload eeprom_data.eep
$(AVRDUDE) $(AVRDUDE_FLAGS) -U eeprom:w:eeprom_data.eep:i

extract_eeprom:
$(AVRDUDE) $(AVRDUDE_FLAGS) -U eeprom:r:eeprom_data.eep:i

upload_eeprom: eeprom_data.eep
$(AVRDUDE) $(AVRDUDE_FLAGS) -U eeprom:w:eeprom_data.eep:i

extract_eeprom_thumbs:
$(AVRDUDE) $(AVRDUDE_FLAGS) -U eeprom:r:eeprom_thumbs.eep:i

upload_eeprom_thumbs: eeprom_thumbs.eep
$(AVRDUDE) $(AVRDUDE_FLAGS) -U eeprom:w:eeprom_thumbs.eep:i

extract_eeprom_fingers:
$(AVRDUDE) $(AVRDUDE_FLAGS) -U eeprom:r:eeprom_fingers.eep:i

upload_eeprom_fingers: eeprom_fingers.eep
$(AVRDUDE) $(AVRDUDE_FLAGS) -U eeprom:w:eeprom_fingers.eep:i

###################
####### HEX #######
###################
Expand Down

0 comments on commit 1599459

Please sign in to comment.