Search found 95 matches: supplementary
Searched query: supplementary
- Wed Apr 01, 2026 12:02 pm
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 21106
Re: ESP32 UART-USB Brige How to use
I commented out a couple of the #includes in supplementary code - you'll probably need to re-enable....
- Mon Mar 30, 2026 11:06 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 21106
Re: ESP32 UART-USB Brige How to use
... Yes - you can use the C to initialise - rename (app_main) initialise (or some such) and add a function definition to the 'includes' (top) box of supplementary code... ( void initialise(void); ) Remove the loop (and the 'hello world'?) from the end of the function... Then call initialise(); from ...
- Tue Feb 17, 2026 2:33 pm
- Forum: Projects - Embedded
- Topic: using personnal arduino library insite flowcode
- Replies: 4
- Views: 1218
Re: using personnal arduino library insite flowcode
... fail due to C / C++ incompatibilities. An AI agent would be very good at turning an Arduino C++ library into pure C code you can include from the supplementary code window.
- Tue Feb 17, 2026 9:18 am
- Forum: Projects - Embedded
- Topic: using personnal arduino library insite flowcode
- Replies: 4
- Views: 1218
Re: using personnal arduino library insite flowcode
Further to @chipfryer27's suggestion, there is more info about the Supplementary Code feature in the wiki and there are many posts on the forum that discuss it too. For example, see here:
https://www.flowcode.co.uk/forums/viewtopic.php?t=3359
https://www.flowcode.co.uk/forums/viewtopic.php?t=3359
- Mon Feb 16, 2026 6:07 pm
- Forum: Projects - Embedded
- Topic: using personnal arduino library insite flowcode
- Replies: 4
- Views: 1218
Re: using personnal arduino library insite flowcode
Hi
In Project Options, within the Other Options section you have a checkbox to Use Supplementary Code. If you tick tihis you can then specify a library to include.
Regards
In Project Options, within the Other Options section you have a checkbox to Use Supplementary Code. If you tick tihis you can then specify a library to include.
Regards
- Wed Jan 21, 2026 9:40 am
- Forum: User Components
- Topic: FC components and AI (ideas?)
- Replies: 20
- Views: 22556
Re: FC components and AI (ideas?)
External code can be included in Supplementary Code. See: https://www.flowcode.co.uk/wiki/index.php?title=Supplementary_Code Instead of adding the code directly to Flowcode, add statements into Supplementary Code such as the following to ...
- Sun Jan 04, 2026 5:20 pm
- Forum: Projects - Embedded
- Topic: Esp32 & LiDAR
- Replies: 3
- Views: 1253
Esp32 & LiDAR
... has a 'correction' formula - for the angle - the macro is still there - but using it gives a spiral effect - my maths isn't up to the job? Supplementary code holds the code to create a UART and receive data from the LiDAR (with a bigger buffer) - and to send commands. This data is then ...
- Thu Dec 04, 2025 11:13 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 21106
Re: ESP32 UART-USB Brige How to use
Odd - the main directory should be created with the project - you could try either pasting the .h and .c files into the supplementary code (instead of the #includes) or give them a fixed address (#include "c:/test/file.h")
Martin
Martin
- Thu Dec 04, 2025 10:34 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 21106
Re: ESP32 UART-USB Brige How to use
ok I create main and all...
Code: Select all
In file included from C:/Users/Kfs-Forschung/Desktop/esp-idf-2/mtxesp32_s3_sdkconfig/main/esp-project.c:20:
C:\C#_sourcecode\_#FC11\Tiny_usb\tinyusb_test.h:64:10: fatal error: supplementary.h: No such file or directory
- Thu Dec 04, 2025 9:41 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 21106
Re: ESP32 UART-USB Brige How to use
Yes - supplementary.h & .c need to go into tiny_usb (project directory) /main/includes - and add includes to CMakeLists.txt as above.
Martin
Martin