Hi Steve
just this file and this line?
Search found 1080 matches
- Fri Apr 17, 2026 9:13 am
- Forum: General
- Topic: ESP32 C6 mini compile does not work
- Replies: 26
- Views: 10467
- Thu Apr 16, 2026 12:51 pm
- Forum: General
- Topic: ESP32 C6 mini compile does not work
- Replies: 26
- Views: 10467
Re: ESP32 C6 mini compile does not work
Hi Steve, Hi Martin
Steve: Can you try if the ESP32C3 is compling on your computer?
I found this information:
Steve: Can you try if the ESP32C3 is compling on your computer?
I found this information:
CPU architecture / ISA extensions (VERY important)
ChipEffective -march
ESP32‑C3 rv32imc
ESP32‑C 6rv32imac_zicsr_zifencei
ESP32‑C6 requires additional RISC‑V extensions
zicsr
zifencei
- Tue Apr 14, 2026 1:16 pm
- Forum: General
- Topic: ESP32 C6 mini compile does not work
- Replies: 26
- Views: 10467
Re: ESP32 C6 mini compile does not work
Hi Martin, Hi Jorgen, Hi Grout Stefan - output seems to imply it can't find the compiler?? Yes, exactly. But the compiler is there, and the DLLs are there too. Somehow it just doesn't work. I'm using the latest toolchain installer from FC11. (Flowcode_Compiler_ESP_5.3a.msi) With an older version, th...
- Thu Apr 02, 2026 1:24 pm
- Forum: General
- Topic: ESP32 C6 mini compile does not work
- Replies: 26
- Views: 10467
Re: ESP32 C6 mini compile does not work
Hi Ben The ESP32 and ESP32S3 work, but the ESP32C3 and ESP32C6 don't. What should I do? -- Found Git: C:/FC_ESP/esp-tools/tools/idf-git/2.44.0/bin/git.exe (found version "2.44.0.windows.1") -- git rev-parse returned 'fatal: not a git repository (or any of the parent directories): .git' fat...
- Wed Apr 01, 2026 1:54 pm
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 24275
Re: ESP32 UART-USB Brige How to use
Hi Martin
I expanded your example to include an array for sending data, and it works.
I can also receive the binary data array very easily using the Flowcode APP Developer.
Demo:
I expanded your example to include an array for sending data, and it works.
I can also receive the binary data array very easily using the Flowcode APP Developer.
Demo:
- Wed Apr 01, 2026 12:16 pm
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 24275
Re: ESP32 UART-USB Brige How to use
Hi Martin
Your program is working fine
Maybe You need ESP-IDF 5.3.1
and in the menuconfig batch file
this line ....
Your program is working fine
Maybe You need ESP-IDF 5.3.1
and in the menuconfig batch file
this line ....
Code: Select all
python "C:\Users\Kfs-Forschung\Desktop\esp-idf-2\tools\idf.py" add-dependency esp_tinyusb
- Wed Apr 01, 2026 11:12 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 24275
Re: ESP32 UART-USB Brige How to use
Hi Martin
Your suggestion works perfectly!
I had to make a few adjustments. Sending is done using the function in the additional code. How can I send an array from my program? I'm not sure exactly where I need to add FCV_.
Your suggestion works perfectly!
I had to make a few adjustments. Sending is done using the function in the additional code. How can I send an array from my program? I'm not sure exactly where I need to add FCV_.
- Mon Mar 30, 2026 1:33 pm
- Forum: Feature Requests
- Topic: ESP32S3 Mini-1 as target
- Replies: 5
- Views: 2707
Re: ESP32S3 Mini-1 as target
Hi Ben Various components use UART for communication, such as GPS/GNSS components. The ESP32S3 has the major advantage of having three UARTs. You can choose the pins for two of them, while one is assigned to a fixed pin. However, Flowcode currently only supports 2 Would it be possible to add a third...
- Mon Mar 30, 2026 1:03 pm
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 24275
Re: ESP32 UART-USB Brige How to use
Hi Martin
Thank you Martin I'll give that a try.
I've had a bit of success with `print_F` so far.
I still have no idea how to send an array
Very short program: C-Code: On computer (regardless of the baud rate)
Thank you Martin I'll give that a try.
I've had a bit of success with `print_F` so far.
I still have no idea how to send an array
Very short program: C-Code: On computer (regardless of the baud rate)
- Mon Mar 30, 2026 10:55 am
- Forum: General
- Topic: ESP32 UART-USB Brige How to use
- Replies: 50
- Views: 24275
Re: ESP32 UART-USB Brige How to use
Hi Martin I've now updated to 5.3.1 and added the USB Tiny dependency. I also have some C code there can I use it in Flowcode? include are ok: #include "tinyusb.h" #include "tusb_cdc_acm.h" #include "esp_log.h" 2026-03-30_11-36-59.PNG C-Code for USB: void app_main(void)...