Page 1 of 1

Display Starburst

Posted: Wed May 08, 2024 10:16 am
by Geraldoo
Hello, I was looking at the starburst display and attempted the demo program. It compiled to C successfully, but compiling to hex causes this issue.
StarburstTest.c: FCD_0f441_LED_Starburst1__ShowCharacter()
410: case '\':
^ (226) char const too long
411: {
^ (320) ":" expected
(908) exit status = 1
(908) exit status = 1

Thanks for any assistance.

Re: Display Starburst

Posted: Wed May 08, 2024 11:40 am
by mnf
The '\' character is an escape character so you need to follow it with something (in this case it escaping ') so if you want a backslash change it to '\\'

Martin