Search found 202 matches

by Alan_37
Wed Nov 05, 2025 1:52 pm
Forum: Bug Reports
Topic: Error Compiling STM32 (solved)
Replies: 10
Views: 482

Re: Error Compiling STM32 (solved)

Hi Martin, To replicate the fault, just open an STM32 Target and force flowcode to use STARM_CAL_String.c Just put a C-Block with the following code and compile to Hex void hexToString(unsigned char *hex, int len, char *out) { for (int i = 0; i < len; i++) out = (char)hex ; out[len] = '\0'; } You do...
by Alan_37
Mon Nov 03, 2025 2:44 pm
Forum: Feature Requests
Topic: Costomise code
Replies: 4
Views: 238

Re: Costomise code

Also, with this Account till now I have bought Flowcode V6, V7, V9, V10, and now V11. I can consider buying the Pro Version. However, if I need to buy the Pro version again when V12 is out(even at half price), that’s probably not something I can do. But if purchasing it once means it stays linked to...
by Alan_37
Mon Nov 03, 2025 11:09 am
Forum: Feature Requests
Topic: Costomise code
Replies: 4
Views: 238

Re: Costomise code

Hi Steve, Thanks for your reply — I understand. What I actually need is the function code itself. For example, I’d like to copy the code of a component to send data so I can include it later in a C-block. At the moment, I use View Annotations as Code, but since that view doesn’t allow copying, I hav...
by Alan_37
Sun Nov 02, 2025 10:33 pm
Forum: Feature Requests
Topic: Costomise code
Replies: 4
Views: 238

Costomise code

Hi, I mostly use Flowcode for the visual structure it provides to my C code. the “Customise Code” feature would be a very handy feature for me but is only available in the Pro version. I’d be willing to pay a bit extra just for this specific feature, but I can’t really justify paying £330 for the fu...
by Alan_37
Sun Nov 02, 2025 1:50 pm
Forum: Bug Reports
Topic: Error Compiling STM32 (solved)
Replies: 10
Views: 482

Re: Error Compiling STM32

Hi Martin, Took a look at STARM_CAL_String.c and fixed the issue myself. The error turned out to be a missing variable declaration, which needed to be replaced with the appropriate constant value representing the buffer size. Now everything works and compiles OK, You can take a look and confirm ever...
by Alan_37
Sun Nov 02, 2025 1:05 pm
Forum: Bug Reports
Topic: Error Compiling STM32 (solved)
Replies: 10
Views: 482

Re: Error Compiling STM32

Yes here it is
by Alan_37
Sun Nov 02, 2025 10:50 am
Forum: Bug Reports
Topic: Error Compiling STM32 (solved)
Replies: 10
Views: 482

Re: Error Compiling STM32

Hi Martin, There’s no need to upload any files — you just need to fix the file STARM_CAL_String.c. Simply apply the same changes that were done in PIC32BIT_CAL_String.c, and that should solve the problem. That said, if you still want me to upload the files, that’s not a problem. However, the code is...
by Alan_37
Sun Nov 02, 2025 12:07 am
Forum: Bug Reports
Topic: Error Compiling STM32 (solved)
Replies: 10
Views: 482

Re: Error Compiling STM32

Hi medelec35, thanks for your reply

Already did that right after installing today with no luck.
Yes, i saw the other post. I think the bug was fixed for PIC32BIT not for STM32
by Alan_37
Sat Nov 01, 2025 11:21 pm
Forum: Bug Reports
Topic: Error Compiling STM32 (solved)
Replies: 10
Views: 482

Error Compiling STM32 (solved)

Hello , I have a file that was written in Flowcode 10. It compiles without any problems in V10, but in Flowcode 11, it gives this error. I have tried adding "char FCLsz_TEMPSTR[100];" in a C block in the beginning, but it does not solve the problem . C:\ProgramData\MatrixTSL\FlowcodeV11\CA...
by Alan_37
Tue Oct 14, 2025 1:41 pm
Forum: General
Topic: Global C-Code
Replies: 2
Views: 2673

Re: Global C-Code

Hi Steve, Thanks for your reply, that was exactly what I needed, to include a file and then use my favorite Editor . The Absolute Path ended up being a bit complicated, but it worked #include "Z:\\Mega_2\\STM ILLUMINATI\\FlowCode Base\\Suplimentary_Code\\UART3_DMA.c" Thanks again Regards