Search found 54 matches

by unity-control
Fri Oct 22, 2021 2:54 pm
Forum: General
Topic: Can't Compile ESP32 (First time)
Replies: 4
Views: 2030

Re: Can't Compile ESP32 (First time)

Hi Ben,

Many thanks for clarifying, I was doing something wrong, I now got the 2 separate folders under c:\dev and compilation works perfectly well!

Thanks again!
R
by unity-control
Fri Oct 22, 2021 10:26 am
Forum: General
Topic: Can't Compile ESP32 (First time)
Replies: 4
Views: 2030

Re: Can't Compile ESP32 (First time)

Hi Leigh,

Thanks for this, I have checked and there is a folder there and some files inside...
esp_idf_folder.jpg
esp_idf_folder.jpg (15.29 KiB) Viewed 1996 times
by unity-control
Thu Oct 21, 2021 8:08 pm
Forum: General
Topic: ESP32 Internal CAN Bus Support
Replies: 2
Views: 1415

Re: ESP32 Internal CAN Bus Support

Many thanks Ben for this,

Will give a try to see if the interface works at all... Do you think RX CAN Interrupt can be implemented in Flowcode?

Thanks,
R
by unity-control
Wed Oct 20, 2021 4:23 pm
Forum: General
Topic: Can't Compile ESP32 (First time)
Replies: 4
Views: 2030

Can't Compile ESP32 (First time)

HI guys, I've followed the document "ESP_Installation_Instructions.pdf". First time compile I get the following error: Device: ESP.ESP32.ESP32 Generated by: Flowcode v9.2.0.33 Date: Wednesday, October 20, 2021 17:05:52 Users: 1 Registered to: unity-control (61547677) Licence key: E73XRB https://www....
by unity-control
Tue Oct 19, 2021 6:02 pm
Forum: General
Topic: Help with C++ Code to Flowcode Conversion
Replies: 13
Views: 4859

Re: Help with C++ Code to Flowcode Conversion

Understood Martin, thanks for ALL your comments.

R
by unity-control
Tue Oct 19, 2021 5:58 pm
Forum: General
Topic: ESP32 Internal CAN Bus Support
Replies: 2
Views: 1415

ESP32 Internal CAN Bus Support

Hi everyone,

Does FC support Internal Can BUS on ESP32? The FC component shows... but does it work?

Cheers,
R
by unity-control
Sun Oct 17, 2021 6:47 pm
Forum: General
Topic: Help with C++ Code to Flowcode Conversion
Replies: 13
Views: 4859

Re: Help with C++ Code to Flowcode Conversion

Excellent Martin, thanks for all of this! It is all very clearly explained.

Cheers!
R
by unity-control
Sun Oct 17, 2021 2:06 pm
Forum: General
Topic: Help with C++ Code to Flowcode Conversion
Replies: 13
Views: 4859

Re: Help with C++ Code to Flowcode Conversion

Hi Martin,

And one more please!!

short hSkew = random(-2, 2); // skew the target a little

How can I adapt the above code to Flowcode?

Cheers,
R
by unity-control
Sun Oct 17, 2021 1:03 pm
Forum: General
Topic: Help with C++ Code to Flowcode Conversion
Replies: 13
Views: 4859

Re: Help with C++ Code to Flowcode Conversion

Many thanks Martin again! Another one for you... static uint8_t getVideoMode() { uint8_t detectedMode = 0; if (rto->videoStandardInput >= 14) { detectedMode = STATUS_16::read(); if ((detectedMode & 0x0a) > 0) { // bit 1 or 3 active? return rto->videoStandardInput; // still RGBHV bypass, 14 or 15 } e...
by unity-control
Sat Oct 16, 2021 3:05 pm
Forum: General
Topic: Help with C++ Code to Flowcode Conversion
Replies: 13
Views: 4859

Re: Help with C++ Code to Flowcode Conversion

Hi Martin again,

Another question, this bit

if (readout >= 0x52) {
// some kind of failure
break;
}

I would believe I can use a connection point here, but what loop does this break statement actually break?

Thanks for clarifying again!