We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48472ce commit 104c7d6Copy full SHA for 104c7d6
.gitignore
@@ -1,3 +1,7 @@
1
+# eeprom files
2
+*.eep
3
+*.eeprom
4
+
5
# Prerequisites
6
*.d
7
README.md
@@ -1,3 +1,8 @@
# eepromIHEX
Simple program that takes hex data you want to upload to a AVR microcontroller's eeprom and formats it into a Intel HEX.
+TODO:
+ 1.- Add error handling
+ 2.- Get hex data from a file
8
eepromIHEX.c
@@ -9,7 +9,7 @@ int main(void){
9
10
// Create the file
11
FILE *eeprom_file;
12
- eeprom_file = fopen("b.eeprom","w");
+ eeprom_file = fopen("b.eep","w");
13
14
while(data_remainig != 0){
15
0 commit comments