Search found 997 matches

by Steve-Matrix
Mon Nov 14, 2022 10:02 am
Forum: General
Topic: Annoying issue if you have an error in your code
Replies: 5
Views: 1270

Re: Annoying issue if you have an error in your code

Or alternatively I could remove these variable change restrictions if the "Allow errors in flowcharts" option is ticked. I've just looked into this fix and it is already there in v9. So if you want to swap to different variable types then first ensure that option is ticked in the "application" tab ...
by Steve-Matrix
Mon Nov 14, 2022 8:58 am
Forum: General
Topic: Annoying issue if you have an error in your code
Replies: 5
Views: 1270

Re: Annoying issue if you have an error in your code

Not ALL variables can be edited. I have noticed that a floating point variable is there to stay. The only way I could edit it (Change it to a non floater) was to delete and start over. This is intended behaviour because changing between an integer and a floating-point can lead to problems elsewhere...
by Steve-Matrix
Fri Nov 11, 2022 9:06 am
Forum: Feature Requests
Topic: Assembler
Replies: 3
Views: 1013

Re: Assembler

You can add assembly language within a C icon using "#asm" or "asm()" like this:

Code: Select all

#asm
 BCF 0,3
 BANKSEL(_var)
 RLF (_var)&07fh
 RLF (_var+1)&07fh
#endasm

 // or alternatively:
 asm("BCF 0,3");
 asm("BANKSEL _var");
 asm("RLF (_var)&07fh");
 asm("RLF (_var+1)&07fh");
by Steve-Matrix
Thu Nov 10, 2022 9:10 am
Forum: General
Topic: MIAC dsPIC to dsPIC BL0032-1
Replies: 2
Views: 545

Re: MIAC dsPIC to dsPIC BL0032-1

The first step will be to change the target device via the "Build...Project Options" menu. Once that has been done, you will probably need to alter the connections to any components so they are connected correctly as per your new hardware configuration. You may also need to pay attention to any I/O ...
by Steve-Matrix
Wed Nov 09, 2022 10:59 am
Forum: Feature Requests
Topic: project options chip data
Replies: 1
Views: 689

Re: project options chip data

Thanks for the suggestion - I will add it to my list.
by Steve-Matrix
Wed Nov 09, 2022 9:21 am
Forum: Bug Reports
Topic: V8 Updat rendered the program unusable
Replies: 1
Views: 532

Re: V8 Updat rendered the program unusable

Neither of your licences for v8 and v9 include the SCADA (i.e. App Developer) feature pack, so if you are trying to create or open one of those project types you will not be able to. Can you give more details about the issues you are facing? It's difficult to assist without more specific information...
by Steve-Matrix
Mon Nov 07, 2022 5:29 pm
Forum: Bug Reports
Topic: PIC24FV16KA302 Ext Interrupts
Replies: 19
Views: 3549

Re: PIC24FV16KA302 Ext Interrupts

The is a new release of Flowcode that addresses this issue. Please see this post for details:

viewtopic.php?p=8748#p8748
by Steve-Matrix
Mon Nov 07, 2022 5:27 pm
Forum: General
Topic: Flowcode v9.3.1 released
Replies: 0
Views: 1126

Flowcode v9.3.1 released

A new core update to Flowcode v9 has been released which fixes a few small bugs. The new version is v9.3.1.36 and has the following changes since the previous update: INTx interrupts now work correctly in simulation Saved v9.3.0 projects with the INTx problem will be corrected when loaded Array init...
by Steve-Matrix
Mon Nov 07, 2022 8:55 am
Forum: Bug Reports
Topic: "DataSheet" component - didn´t display DATA
Replies: 8
Views: 8990

Re: "DataSheet" component - didn´t display DATA

But, for the sake to improve FC9, wouldn't be useful if it could be able to display data in real time ? We end up with a type of a "Panel of Results", in a flexible matrix shape. Displaying the data would depend on the type of data, the number of series, the number of different data points, etc. If...
by Steve-Matrix
Fri Nov 04, 2022 8:48 am
Forum: Bug Reports
Topic: "DataSheet" component - didn´t display DATA
Replies: 8
Views: 8990

Re: "DataSheet" component - didn´t display DATA

You should be able to right-click and select "Show stored data" during simulation. I've just tested it with your project and it is working fine when I step through the project and select that menu item at various points in the program execution. It also works if I add a "while 1" loop at the end and...