Serial echo for 433Mhz RF transmitter

      const char *msg = readString

The line is missing a ;, for one thing. For another, readString is a String. You can not make a char pointer point to anything but a char (or char array).

The String class has a toCharArray method that looks to be what you need. Notice that is expects an ARRAY, not a pointer. Yes, there IS a difference.