Skip to content

Commit 104c7d6

Browse files
committed
Added TODO list
1 parent 48472ce commit 104c7d6

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# eeprom files
2+
*.eep
3+
*.eeprom
4+
15
# Prerequisites
26
*.d
37

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
# eepromIHEX
22

33
Simple program that takes hex data you want to upload to a AVR microcontroller's eeprom and formats it into a Intel HEX.
4+
5+
TODO:
6+
1.- Add error handling
7+
2.- Get hex data from a file
8+

eepromIHEX.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ int main(void){
99

1010
// Create the file
1111
FILE *eeprom_file;
12-
eeprom_file = fopen("b.eeprom","w");
12+
eeprom_file = fopen("b.eep","w");
1313

1414
while(data_remainig != 0){
1515

0 commit comments

Comments
 (0)