Search found 759 matches

by JonnyW
Thu Nov 28, 2013 5:00 pm
Forum: Flowcode V6
Topic: no 3d in systempanel please
Replies: 18
Views: 14083

Re: no 3d in systempanel please

Hi. thanks but, if you read my post i've posted that the selected component goes right to the dashboard, i'm asking just to gray out the double option that appears on the component bar, cause the "Add to System panel" is no longer needed, cause it's disabled. Of course if it can be easily done but t...
by JonnyW
Thu Nov 28, 2013 10:03 am
Forum: Flowcode V4
Topic: General Flowcode String question
Replies: 5
Views: 5992

Re: General Flowcode String question

Hi Dave. Yes, Flowcode works like C does with a null terminator but also knows how long a string is - if there is no null before the end of the string then it will not go over the end. In your example with a non-null character in the 5th byte this will be sent too, but nothing else from the end of t...
by JonnyW
Wed Nov 27, 2013 10:37 pm
Forum: Flowcode V6
Topic: Flowcode patch 6.0.4 Released
Replies: 6
Views: 7224

Re: Flowcode patch 6.0.4 Released

Evening. There are a couple of changes in this release that will hopefully address two of the main issues raised on our forums. For those who do not want two panels If you wish to turn off the system panel and work on the 2D Dashboard panel only: In Menu->View->Global Options... ensure both 'Use das...
by JonnyW
Tue Nov 26, 2013 9:29 pm
Forum: Flowcode V6
Topic: Error importing V5 macro
Replies: 2
Views: 2307

Re: Error importing V5 macro

Hi. V6 uses a completely different file structure to v5, and this goes for the FCM files too. I have yet to add these to the converter, because whereas in v6 everything shares the same basic structure all files in v5 are different. As a work-around for now what I would suggest is import a FCF file f...
by JonnyW
Sun Nov 24, 2013 8:26 pm
Forum: Flowcode V6
Topic: activaton failed
Replies: 2
Views: 2051

Re: activaton failed

Hello. We have different technologies powering our website - phpBB, MediaWiki, hand-coded... One of the things we are looking into now we are adding more like this is tighter integration - I agree, you should only have to register once. It is something we are looking into anyway. Until then, I am gl...
by JonnyW
Sat Nov 23, 2013 11:32 pm
Forum: User Components
Topic: DS1307 - RTC Time Keeper
Replies: 146
Views: 325430

Re: DS1307 - RTC Time Keeper

Hi Jordy. In this version the Auto Day Of week calculation has been removed because this the algorithm used was to complex and eats up allot of program memory. especially for small uC this is a huge disadvantage. I don't know the details of your component, but if you create a property when it is dow...
by JonnyW
Sat Nov 23, 2013 11:01 pm
Forum: Flowcode V6
Topic: Wraping up Custom Components
Replies: 4
Views: 2999

Re: Wraping up Custom Components

Hi Acestu. Possibly, yes, but it all depends on the component you are creating. For example, if you have written a specific SPI interface component we could do a video on how to covert this component, but it would only be useful to a very select group of people. Also some people want their component...
by JonnyW
Sat Nov 23, 2013 4:35 pm
Forum: Flowcode V6
Topic: Wraping up Custom Components
Replies: 4
Views: 2999

Re: Wraping up Custom Components

Hi. Yes you can. It all depends on how you want to do it. You can write a flowchart that does the same as your custom C code, or just drop the C code into a C-code icon. We can help with either of these and how to define your component front end (what component macros can be called, etc) given more ...
by JonnyW
Sat Nov 23, 2013 4:33 pm
Forum: Flowcode V6
Topic: Basic Compiler Error - Any clues?...
Replies: 7
Views: 6056

Re: Basic Compiler Error - Any clues?...

No probs Brendan. BoostC and the launchers have had issues with virus scanners before now. I have changed the launchers a bit for the next patch but virus scanners can be pretty overzealous, so never know.

Cheers for letting us know.

Jonny
by JonnyW
Sat Nov 23, 2013 4:32 pm
Forum: Flowcode V6
Topic: Bug in the Flowcode 6.0.3
Replies: 3
Views: 3353

Re: Bug in the Flowcode 6.0.3

Hi. The patch with that fix will hopefully be out Wednesday. We put the release back until then for extended testing. If you really need something out the door before then then add a calculation icon, right click and select 'customize the C code' from the context menu. This will act as an alternate ...
by JonnyW
Fri Nov 22, 2013 2:49 pm
Forum: Flowcode V6
Topic: Basic Compiler Error - Any clues?...
Replies: 7
Views: 6056

Re: Basic Compiler Error - Any clues?...

Hi Brendan. I have the latest build available here and your PM'd program compiles fine for me. There have been quite a few fixes gone in to this build, so its possible one of them caught the issue, though I can't see anything in the logs directly relating to I2C. We are aiming to release the next pa...
by JonnyW
Fri Nov 22, 2013 1:18 pm
Forum: Flowcode V6
Topic: Basic Compiler Error - Any clues?...
Replies: 7
Views: 6056

Re: Basic Compiler Error - Any clues?...

Hi Brendan.

Can you post (or PM if needed) the fcfx program. Doesn't sound like there should be any issues with the program, but BoostC is pretty good at refusing to show any error messages just when you need them.

Jonny
by JonnyW
Thu Nov 21, 2013 11:56 pm
Forum: General Programming
Topic: Different variable types in calculation?
Replies: 5
Views: 5237

Re: Different variable types in calculation?

Hi. OK, no probs. Flowcode 5 will behave in simulation the same as v6, which is to keep as like to C as it can. What a C compiler should do is perform any intermediate calculations as 'int', meaning multiplying two bytes will result in an integer. The optimisation may be 'clever' though (read 'wrong...
by JonnyW
Wed Nov 20, 2013 10:36 pm
Forum: General Programming
Topic: Different variable types in calculation?
Replies: 5
Views: 5237

Re: Different variable types in calculation?

Hello. What version of Flowcode is this, and are you talking simulation or download? For example in simulation Flowcode 6 will always use 32-bit for its intermediate calculations. The compact A=(b*c)/d should always work OK in this case. Can you post a flowchart that shows your problem? Cheers, Jonny
by JonnyW
Wed Nov 20, 2013 10:19 am
Forum: Feature requests
Topic: EEprom
Replies: 1
Views: 2419

Re: EEprom

Hi Wayne. You mean to be able to label each byte with a custom label? I don't know if there is enough space in the display to do that, but it may be possible in future releases to custom-label specific addresses, it is an interesting idea. It would have to be done manually though as there are too ma...
by JonnyW
Tue Nov 19, 2013 6:07 pm
Forum: Flowcode V6
Topic: Problem with Eprom Console
Replies: 1
Views: 2289

Re: Problem with Eprom Console

Hi Wayne. Good spot - I will remove that option for fixed buffers.

Jonny
by JonnyW
Tue Nov 19, 2013 5:39 pm
Forum: Flowcode V6
Topic: Problem scaling in dashboard panel
Replies: 12
Views: 7965

Re: Problem scaling in dashboard panel

Hi. We are in the process of testing now.

Once this build is tested and we are confident we hope to release probably Monday.

This build introduces aspect-ratio locking to components so dials and such can not exhibit this problem.

Jonny
by JonnyW
Sun Nov 17, 2013 7:15 pm
Forum: Flowcode V6
Topic: Print String / Text + Variable ?
Replies: 4
Views: 4028

Re: Print String / Text + Variable ?

Hello. I should have mentioned. In v6 we have 'casting' operators, string float, signed, unsigned. string variable Converts 'variable' to a string (it does not matter what type variable is signed variable Converts 'variable' to a signed integer unsigned variable Converts 'variable' to an unsigned in...
by JonnyW
Sun Nov 17, 2013 7:12 pm
Forum: User Components
Topic: DS1307 - RTC Time Keeper
Replies: 146
Views: 325430

Re: DS1307 - RTC Time Keeper

Hi Jordy. That error may be because the pins are not connected. The properties behave like pre-processor when converted to C. This means if you have a property called 'connection' and it is assigned to pin A 5 then what Flowcode does is take the line: connection = 1 And replace it with: $PORTA.5 = 1...
by JonnyW
Sat Nov 16, 2013 11:41 pm
Forum: User Components
Topic: DS1307 - RTC Time Keeper
Replies: 146
Views: 325430

Re: DS1307 - RTC Time Keeper

Evening Jordy. when I assign a true ore false statement to the corresponding output pin I get a some strange error message from Flowcode when I want to test it so you cannot use the output pins at this moment. What is the error you are getting? Perhaps if I can replicate that here then I can help? C...
by JonnyW
Sat Nov 16, 2013 11:28 pm
Forum: Flowcode V6
Topic: Print String / Text + Variable ?
Replies: 4
Views: 4028

Re: Print String / Text + Variable ?

Evening. In a calculation icon do:

Code: Select all

temp_string = text + string variable
Where temp-string is a string variable , text is the text to print and variable is the integer or float to convert.

That will put the contents in temp-string

Jonny
by JonnyW
Thu Nov 14, 2013 4:21 pm
Forum: Flowcode V6
Topic: SSD1289 TFT SSD1963
Replies: 17
Views: 15588

Re: SSD1289 TFT SSD1963

Hello. This will be fixed in the upcoming patch, apologies for this.

Jonny
by JonnyW
Thu Nov 14, 2013 4:19 pm
Forum: Flowcode V6
Topic: Flowcode Patch error
Replies: 1
Views: 2110

Re: Flowcode Patch error

Hello. We have not seen this before.

Can you give us details of your system and perhaps PM Dave who can walk you through some tests to discount?

Cheers,

Jonny
by JonnyW
Thu Nov 14, 2013 4:17 pm
Forum: Flowcode V6
Topic: Dis-able system pannel
Replies: 2
Views: 2840

Re: Dis-able system pannel

I hope this is more like what you are after:
000025_.png
System and dashboard panels
(31.59 KiB) Downloaded 1351 times
You can disable the rulers and 'slide up' the toolbars if you wish.

Jonny
by JonnyW
Mon Nov 11, 2013 11:40 am
Forum: Flowcode V6
Topic: System Panel
Replies: 3
Views: 2668

Re: System Panel

Thats strange. Not seen this before! You should not have to reinstall, regardless. Delete the registry key: CURRENT_USER\Software\MatrixMM\FlowCodeV6\Workspace\Serialize Could the panel have been docked somewhere hard to see? If you save the contents of the above key and PM me those, I can find out ...