When I declare a function that accepts const char* and I pass a string literal, I get a
Warning: [2066] type qualifier mismatch in assignment
because string literals are rom const char*. It's the same the other way around.
Though the PIC is Harvard architecture, the memory is mapped into one contiguous address space, so theoretically it should be possible to support both ram and rom pointers the same way. Probably I have to use rom pointers because they are 24 bit while ram pointers are 16 bit.
However, just casting a const char* to a const rom char* does not work.