Hi ~
1. Background
We are using Embedded Wizard in an STM32 environment.
Our product includes both eMMC and SD card as storage devices (FATFS),
so the system needs to support copying files between them depending on the user’s needs.
I’m currently working on building a simple file browser for this purpose.
2. Problem
If a user selects a large file, or a folder that contains many files or subfolders,
the system becomes unresponsive during the copy operation
because EwProcess() is not executed during that time.
As a result, the screen appears frozen from the user's perspective.
3. Question
Since there is no operating system, I can’t use threads.
Is there any special programming technique I can use to solve this problem?
Thanks ~