Display Starburst

A forums to allow bugs and problems with Flowcode v7 to be reported and resolved.

Moderator: Benj

Post Reply
Geraldoo
Posts: 1
Joined: Thu Feb 22, 2024 2:58 am

Display Starburst

Post 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.

mnf
Valued Contributor
Valued Contributor
Posts: 1191
Joined: Wed May 31, 2017 11:57 am
Has thanked: 70 times
Been thanked: 440 times
Contact:

Re: Display Starburst

Post 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

Post Reply