Mamdouh1
Newbie level 3
- Joined
- May 8, 2014
- Messages
- 3
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 38
Hi everybody .
what is this warning meaning in MPLAB XC8 and how avoid it ??
The code cause this warning come from :
the function is :
thanks for help .
what is this warning meaning in MPLAB XC8 and how avoid it ??
newmain.c:63: warning: (359) illegal conversion between pointer types
The code cause this warning come from :
Code:
LCD_Out_Cp(">>>");
the function is :
Code C - [expand] 1 2 3 4 5 void LCD_Out_Cp(unsigned char *Str) { while(*Str) LCD_Chr_Cp(*Str++); }
thanks for help .
Last edited by a moderator: