error: #18: expected a ")" ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-07-08 3:58 AM
Dear Members,
I got this error: #18: expected a ")" on this line :
LCD_SendCommand(lcd_addr, 0b00110000);
")" is already there, what's the issue ??
Thanks
- Labels:
-
LCD-LTDC
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-07-08 4:28 AM
Check if lcd_addr is correctly defined. But most likely there is an error in one of the previous lines (or included files) which causes an error to that correct line. Check for unterminated by ";" lines, unterminated quotation marks or parenthesis.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-07-08 4:50 AM
Binary is not accepted by most compilers.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-07-08 4:51 AM
so better be in hex ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-07-08 4:52 AM
LCD_SendCommand(lcd_addr, 0x30h); ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2019-07-08 5:00 AM
Lose the h, you're programming in C
0x30
Up vote any posts that you find helpful, it shows what's working..
