ajpaezm:
Until this point, no problems at all.
3) Converting uint or char to const char, the way is supposed to for writeFile to accept it without errors.
Any function that accepts an argument of type "const char *" will also accept a "char *". On function arguments the 'const' just means "I promise I won't use this pointer to write into your data."
Note: There is no type "uint". Did you mean "unsigned int" or "uint_16"?
Any function that accepts an argument of type "const char *" will also accept a "char *". On function arguments the 'const' just means "I promise I won't use this pointer to write into your data."
Note: There is no type "uint". Did you mean "unsigned int" or "uint_16"?
I thought the same, just sending that input there but for some reason this has not worked (later on when I try again I'll post the outcome here).
And I apologise about the "uint" type, I was just trying to be general on the unsigned integer types you could declare, like uint16_t, uint8_t, uint32_t, etc.