]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/mcsdk-tools.git/blobdiff - writer/eeprom/src/eepromwriter.c
added PCIE examples for C6670 from Eric Ding
[keystone-rtos/mcsdk-tools.git] / writer / eeprom / src / eepromwriter.c
index 5646a0e1b53d974e0b53f534682e1404083afb97..e14bbc808994ff566db362e5c17b01ebbf64450f 100644 (file)
@@ -48,7 +48,8 @@
 #include "types.h"
 
 /* EEPROM writer utility version */
-char version[] = "01.00.00.03";
+char version[] = "01.00.00.04";
+
 
 /* The input file name is hard coded */
 char *input_file = "eepromwriter_input.txt";
@@ -99,6 +100,16 @@ void Osal_platformFree (uint8_t *dataPtr, uint32_t num_bytes)
     }
 }
 
+void Osal_platformSpiCsEnter(void)
+{
+    return;
+}
+
+void Osal_platformSpiCsExit (void)
+{
+    return;
+}
+
 /******************************************************************************
  * Function:    print_platform_errno
  ******************************************************************************/
@@ -320,7 +331,7 @@ parse_input_file
 )
 {
     char line[MAX_LINE_LENGTH];
-    char tokens[] = " :=;\n";
+    char tokens[] = " :=;\n\r";
     char *key, *data;
 
     memset(line, 0, MAX_LINE_LENGTH);