Hi, i have the following defined on top of the program in C
#define Mess1 "\n\rWaterflow Sensor";
in my main i have the following written:-
AsUSARTsendBytes(Mess1);
The function being called is like that
void AsUSARTsendBytes( char *bytes )
Something however is going wrong the compiler is giving the following message:-
illegal conversion between pointer types
what can i do to fix this, thanks