void lcd_gotoxy(char x, char y) //커서 이동
{
lcd_cmd_write( 0x80|(0x40 * y) + x);
}
error
suggest parentheses around arithmetic in operand of '|' [-Wparentheses]
라는 오류가 나올때 수식을 좀 더 명확 하게 만들어주면 Warning이 사라짐.
void lcd_gotoxy(char x, char y) //커서 이동
{
lcd_cmd_write( 0x80|((0x40 * y) + x));
}
위 수식 처럼 명확하게 해주면 완료.
'AVR&ARM' 카테고리의 다른 글
[AVR] DC_motor 제어 (1) | 2016.05.26 |
---|---|
[Avr studio] warning: large interger implicitly truncated to unsigned type (0) | 2016.05.26 |
avr 처음 사용시 Fuse 설정 (0) | 2016.05.13 |
이진수 MSB, LSB 역순으로 만들기 함수 (0) | 2016.05.11 |
[AVR studio] warning "F_CPU~" (0) | 2016.04.20 |