Search found 997 matches

by Steve-Matrix
Fri Mar 03, 2023 6:11 pm
Forum: Feature Requests
Topic: App Developer Runtime close with a command
Replies: 6
Views: 1167

Re: App Developer Runtime close with a command

If you don't want the "stop" button in a deployed app, select ""no controls" or "start/pause" under "execution controls" when deploying it.
by Steve-Matrix
Thu Mar 02, 2023 5:51 pm
Forum: Feature Requests
Topic: App Developer Runtime close with a command
Replies: 6
Views: 1167

Re: App Developer Runtime close with a command

Hi Stefan, There is no easy way to programmatically close a Flowcode App Developer app. I will add to my list to investigate. But there is a way to prevent the app from closing (although the user can override this by pressing 'ignore' when the warning appears). I have attached a simple app and proje...
by Steve-Matrix
Wed Mar 01, 2023 10:21 am
Forum: General
Topic: PIC16F project not compiling to HEX
Replies: 10
Views: 1643

Re: PIC16F project not compiling to HEX

Sorry - my mistake. It's not a bug in the component. It's because comments have been added to the LUT data which stop the compiler seeing the commas. 0x0011 //Make EEProm Valid, 0x0101 //RampStart, 0x0296 //RampTime, 0x0302 //Standby, 0x0401 //AutoNull, To fix this, put the commas straight after the...
by Steve-Matrix
Wed Mar 01, 2023 9:26 am
Forum: General
Topic: Using C code
Replies: 5
Views: 1100

Re: Using C code

Your C code is illegal C. Specifically this line: // Remove the first 3 characters from the string FCL_BUFFER = FCL_BUFFER + 3; FCL_BUFFER is declared as an array in Flowcode (local string "buffer[20]"). You are probably best off avoiding C code and using a calculation similar to following: .buffer ...
by Steve-Matrix
Wed Mar 01, 2023 9:14 am
Forum: General
Topic: PIC16F project not compiling to HEX
Replies: 10
Views: 1643

Re: PIC16F project not compiling to HEX

It looks like a bug in one of the components. There should be a library update for this soon.
by Steve-Matrix
Tue Feb 28, 2023 9:00 am
Forum: General
Topic: ATMEGA328PB
Replies: 6
Views: 972

Re: ATMEGA328PB

Thanks. We'll look into it.
by Steve-Matrix
Mon Feb 27, 2023 9:29 am
Forum: General
Topic: atmega 2560 flowcode9 does not work
Replies: 20
Views: 3542

Re: atmega 2560 flowcode9 does not work

Are the configuration options in "Build..Project Options" appropriate for your hardware? Specifically the clock source.
by Steve-Matrix
Mon Feb 27, 2023 9:07 am
Forum: General
Topic: atmega 2560 flowcode9 does not work
Replies: 20
Views: 3542

Re: atmega 2560 flowcode9 does not work

Is this an issue with simulation or downloaded code, or both?
by Steve-Matrix
Mon Feb 27, 2023 9:05 am
Forum: Bug Reports
Topic: FC10 window and ili9341 rotation
Replies: 16
Views: 2045

Re: FC10 window and ili9341 rotation

Thanks for the clarification. I have managed to replicate the issue in a multi-monitor setup when Flowcode is set to full-screen on the main monitor. If Flowcode is full-screen on the second monitor the taskbar does appear correctly. It seems a very niche problem and I will have a quick look to see ...
by Steve-Matrix
Sun Feb 26, 2023 11:11 am
Forum: Bug Reports
Topic: GLCD (SSD1306) Clear function does not fully clear
Replies: 5
Views: 947

Re: GLCD (SSD1308) Clear function does not fully clear

Please post the .c and .h files generated by your project.