Quote:
Originally Posted by crd4me
I've been using the OBDuino32k.pde file. When I load on the IDE plateforme I receive the following errors. I thought replacing prog_char by const char would do the work but it didn't. Any body can help ?
|
You have to go through the entire OBDuino code and replace each and every instance of "prog_char" with "const char". That is a total pain in the neck, but it has to be done.
Quote:
Originally Posted by crd4me
Code:
OBDuino.ino:721: error: 'prog_char' does not name a type
const prog_char obd_std_strings[17][9] PROGMEM =
|
For instance, this wasn't changed, and it failed when the compile attempt was made.