Hi Ben ,
Yes now Working 100% thanks so much .
Search found 205 matches
- Wed Apr 01, 2026 1:16 pm
- Forum: Bug Reports
- Topic: Pi Pico Compile Error
- Replies: 4
- Views: 1465
- Wed Apr 01, 2026 9:34 am
- Forum: Bug Reports
- Topic: Pi Pico Compile Error
- Replies: 4
- Views: 1465
Re: Pi Pico Compile Error
Hi, LeighM
Thanks for your reply , ok hope i can start playing with the Pico soon .
Thanks for your reply , ok hope i can start playing with the Pico soon .
- Tue Mar 31, 2026 10:48 pm
- Forum: Bug Reports
- Topic: Pi Pico Compile Error
- Replies: 4
- Views: 1465
Pi Pico Compile Error
I just installed the pi Pico toolchain i but i am not able to compile
in the FCFX i just output 1 on GPIO16 .
any one can help please .
in the FCFX i just output 1 on GPIO16 .
any one can help please .
- Wed Nov 05, 2025 1:52 pm
- Forum: Bug Reports
- Topic: Error Compiling STM32 (solved)
- Replies: 10
- Views: 5150
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...
- Mon Nov 03, 2025 2:44 pm
- Forum: Feature Requests
- Topic: Costomise code
- Replies: 4
- Views: 2308
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...
- Mon Nov 03, 2025 11:09 am
- Forum: Feature Requests
- Topic: Costomise code
- Replies: 4
- Views: 2308
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...
- Sun Nov 02, 2025 10:33 pm
- Forum: Feature Requests
- Topic: Costomise code
- Replies: 4
- Views: 2308
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...
- Sun Nov 02, 2025 1:50 pm
- Forum: Bug Reports
- Topic: Error Compiling STM32 (solved)
- Replies: 10
- Views: 5150
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...
- Sun Nov 02, 2025 1:05 pm
- Forum: Bug Reports
- Topic: Error Compiling STM32 (solved)
- Replies: 10
- Views: 5150
Re: Error Compiling STM32
Yes here it is
- Sun Nov 02, 2025 10:50 am
- Forum: Bug Reports
- Topic: Error Compiling STM32 (solved)
- Replies: 10
- Views: 5150
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...