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.
Display Starburst
Moderator: Benj
-
- Valued Contributor
- Posts: 1200
- Joined: Wed May 31, 2017 11:57 am
- Has thanked: 70 times
- Been thanked: 440 times
Re: Display Starburst
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
Martin