FAQ
This chapter collects common questions and answers during the use of ETStudio, helping users quickly locate solutions to common problems.
Q1: After rolling back to an older version, the new project cannot be opened
A1: Delete the C:\Users\Administrator\AppData\Local\ETStudio folder, and the software will then be able to open.
Q2: After opening Kostia, the host computer (ETStudio) fails to open
A2: Copy the ET_Driver from the host computer (ETStudio) to overwrite the ET_Driver of Kostia.
Q3: How to use delay_ms / delay_us and other sleep functions in ETStudio C mini program?
A3: ETStudio C mini program, similar to CAPL, is a trigger-based execution model. The usage scenarios for sleep functions are as follows:
- In the main program
OnStart: Usedelay_ms/delay_us, which will not block the main program. - In event callback functions (recommended): Use
delay_ms/delay_us/Sleepand other sleep functions in events such asOnTimer/OnReceiveFrame/OnSysVarUpdate, with behavior similar to CAPL.