Search found 1257 matches

by Steve-Matrix
Wed Nov 12, 2025 4:42 pm
Forum: Bug Reports
Topic: Problem to build a project from Version8 [solved]
Replies: 13
Views: 1265

Re: Problem to build a project from Version8 [not solved]

That could be the issue. The free version of the underlying XC16 compiler may not be optimised and be adding unnecessary bloat to the HEX file.

I think some of our users have used the professional version of XC16 with Flowcode with success, but I have never tried it myself.
by Steve-Matrix
Mon Nov 10, 2025 5:08 pm
Forum: General
Topic: FORUM RULES - important, please read!
Replies: 0
Views: 95

FORUM RULES - important, please read!

Forum Rules: 1. All the forums are categorized by topics. Please post your questions or messages in the appropriate forum. 2. All help must be provided in the forums. We do not usually allow support to be provided or requested via personal message, email, or remote desktop control programs. 3. If y...
by Steve-Matrix
Mon Nov 10, 2025 4:24 pm
Forum: General
Topic: Opening project in FC10 in FC11!
Replies: 12
Views: 391

Re: Opening project in FC10 in FC11!

Hi Jorgen (and this applies to all users of this forum), Firstly I just want to add something to what Martin has just said because I don't want this to be misinterpreted: If you have any issues with conversions from FC10 to FC11 then we will sort them out for you. We will certainly investigate and t...
by Steve-Matrix
Mon Nov 10, 2025 12:38 pm
Forum: General
Topic: Opening project in FC10 in FC11!
Replies: 12
Views: 391

Re: Opening project in FC10 in FC11!

During compiling a one of my program in FC11 I suddently discover this red line: C:\ProgramData\MatrixTSL\FlowcodeV11\CAL\ESP\ESP_CAL_Float.c:91:6: warning: conflicting types for built-in function '__builtin_isinf_sign' [-Wbuiltin-declaration-mismatch] ? This is a warning and might also be present ...
by Steve-Matrix
Mon Nov 10, 2025 12:36 pm
Forum: General
Topic: Opening project in FC10 in FC11!
Replies: 12
Views: 391

Re: Opening project in FC10 in FC11!

It is probably useful to add my extra explanation here so that it is more visible. This is what I have just added to that original post when you asked "Can I open and continue project wich I have started in FC10?": Just to expand on this, while most v10 projects will open and function just...
by Steve-Matrix
Mon Nov 10, 2025 12:14 pm
Forum: General
Topic: Opening project in FC10 in FC11!
Replies: 12
Views: 391

Re: Opening project in FC10 in FC11!

Hello Jorgen, Sorry, I was not aware of the v11-specific changes to the fonts used in a particular component in Flowcode. And I'm sorry you are disappointed and feel my original answer was misleading. My original text was "Yes - v10 projects should open in v11 without problem." There were ...
by Steve-Matrix
Fri Nov 07, 2025 10:33 am
Forum: General
Topic: Flowcode V11 license
Replies: 3
Views: 653

Re: Flowcode V11 license

Thanks for your question, Bob. You raise an important issue that we are aware of and we have plans to address it. Although it's difficult to be specific as to the situations where a new feature, bugfix or improvement will be available for all users (and not just those up to date with Software Assura...
by Steve-Matrix
Thu Nov 06, 2025 12:45 pm
Forum: General
Topic: Buy Flowcode11!
Replies: 5
Views: 231

Re: Buy Flowcode11!

jgu1 wrote:
Wed Nov 05, 2025 5:43 pm
* In FC10 the Arduino Nano 328 115200 is available but not in FC11, only Arduino Nano 328 (cheap one). Is this now working for both?

We've checked and that target is there in v11.
by Steve-Matrix
Thu Nov 06, 2025 12:00 pm
Forum: General
Topic: Buy Flowcode11!
Replies: 5
Views: 231

Re: Buy Flowcode11!

Thanks for your post, Jorgen. Some answers are below: * In Flowcode 11, are the same components used as in Flowcode 10, or are we starting over with new ones (and possibly new bugs)? With v11, we start by making direct copies of the v10 components. We have been using the v10 components with v11 for ...
by Steve-Matrix
Wed Nov 05, 2025 5:21 pm
Forum: General
Topic: Save counter
Replies: 5
Views: 226

Re: Save counter

"&" and "AND" are equivalent and both represent a bitwise operator. So "5 AND 2" is actually false (zero) because the bitwise of 5 (0b101) and 2 (0b010) is 0 (0b000). The "&&" is the logical-and operator. This is used when comparing 2 things that m...