Using the Filesystem SPIFFS with Arduino IDE 2.0.x is problematic

I am trying to save some Files on my ESP32S3 using the Arduino IDE 2.0.3 but it stucks.
With the IDE 1.8.x there is no prblem.
One should save a zip file (ESP32FS )in the sketchbook location of the ESP32 and then go to IDE -> Tools then find an option called something like ESP32 sketch data upload, but i doesn't work with IDE 2.0.3. I don't find it in the tools.
I searched a little of bit in the Internet for a solution but i only found what about Arduino IDE 1.8.x.
Have anyone succeeded to save files on ESP32 using Arduino IDE 2.0.x?
If yes, please tell how?

Thanks in forward.

Hi @hamokhalil. Arduino IDE 2.x is a complete rewrite of the Arduino IDE on a different framework and in a new language. The "Tools" system of Arduino IDE 1.x is very specific to the Java language that version series of Arduino IDE was written in, so it was not possible to add support for Arduino IDE 1.x Tools to Arduino IDE 2.x.

Full support for making equivalent (and even better) expansions on the default capabilities of Arduino IDE was recently added to Arduino IDE. However, it will still be necessary for the community to create Arduino IDE 2.x extensions to replace the Arduino IDE 1.x tools, and as far as I know nobody has done that yet for the "ESP32 sketch data upload" Tool.

For now, I can suggest two options. You can pick whichever one of the two that is most convenient to you:

Use Arduino IDE 1.x

If you want to use the Arduino IDE 1.x tool, you can use Arduino IDE 1.x. The download links for Arduino IDE 1.x are listed here:

https://www.arduino.cc/en/software#legacy-ide-18x

You can have both Arduino IDE 2.x and Arduino IDE 1.x installed at the same time on your computer and the two won't cause any problems for each other, so you are welcome to continue using Arduino IDE 2.x as your primary IDE, switching to Arduino IDE 1.x only when you need to upload a SPIFFS filesystem to your ESP32.

Use the command line tools directly

Under the hood, what the "ESP32 sketch data upload" Tool does is:

  1. Generate a SPIFFS filesystem image from the contents of the data subfolder of your sketch.
  2. Upload the filesystem to the ESP32 board.

It does these things using two command line tools:

So instead of using the "ESP32 sketch data upload" Tool from Arduino IDE, you can just work directly with those two tools from the command line terminal.

There is some information on that here:

https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/storage/spiffs.html

1 Like

Thank you @ptillisch .
I will try your second suggestion.
I have already Arduino IDE 1.8.x on my PC, but for some reasen when i open IDE 1.8.x then IDE 2.0.x doesn't work.
It has with the proxy setting to do.

I might be able to help you with that, but I'd need a detailed description of what you mean by "doesn't work".

As I mentioned previously, it is not expected that the two IDE versions will have any conflict with each other. There is a completely separate preferences store for each IDE, so even if you change the proxy configuration in one IDE, it should not affect the proxy configuration of the other IDE.

It is so:
when i open IDE 1.8.x it works perfectly, but when i switch to IDE 2.0.x it stucks, it don't open.
I have first delete the yaml file in the instalation folder then it open again but it take 1 to 2 minutes.
And that's happen everytime i try to open IDE2.0.x.

The first thing I would recommend is for you to update to the latest version of Arduino IDE (currently 2.1.1). There has been a lot of fixes and improvements since the time of the 2.0.3 version you are using and it might be that the problem you are experiencing has already been fixed.

If the problem does still occur, then please reply here to tell me which operating system (e.g., "Windows') you are using. I need that information in order to provide you with the appropriate instructions for troubleshooting the problem.

What is the full file name of the yaml file?

arduino-cli.yaml
Windows 10

Are you certain it is in the installation folder?

The usual place to find that file is here:

C:\Users\<username>\.arduinoIDE\arduino-cli.yaml

(where <username> is your Windows username)

But Arduino IDE is not installed at that location. That C:\Users\<username>\.arduinoIDE folder is only used by Arduino IDE to store some data files.

Thanks! I'm going to ask you to post some additional information that might help us to identify the problem.

Please do this:

  1. Close all Arduino IDE windows if the IDE is already running.
  2. Start Windows "File Explorer".
  3. Open the Arduino IDE installation folder.
    The default installation location is at one of the following paths:
    • C:\Program Files\Arduino IDE
      
    • C:\Users\<username>\AppData\Local\Programs\Arduino IDE
      
      (where <username> is your Windows username)
      :exclamation: If looking for it with your file manager or command line, note that the AppData folder is hidden by default. On Windows "File Explorer", you can make it visible by opening the "View" menu, then checking the box next to "☐ Hidden items".
  4. In the folder listing of the Arduino IDE installation folder, hold the Shift key while clicking the right hand button on the mouse.
  5. From the context menu, click "Open PowerShell window here".
    Windows PowerShell will now open with the current directory set to the Arduino IDE installation folder.
  6. Type the following command:
    & ".\Arduino IDE"
    
  7. Press the Enter key.
    Debug output should now be printed to the PowerShell window as Arduino IDE starts.
  8. Wait until you are sure the IDE startup has gone into the hang state
    (as indicated by no additional output being printed to the terminal).
  9. Switch back to the PowerShell window if the Arduino IDE window took the focus.
  10. Right click on the title bar of the PowerShell window.
    This will open a context menu.
  11. Select Edit > Select All from the context menu.
    This will select all the text in the PowerShell window.
  12. Press Ctrl+C.
    This will copy the contents of the PowerShell window to the clipboard.
  13. Open a forum reply here by clicking the Reply button.
  14. Click the <CODE/> icon on the post composer toolbar.
    This will add the forum's code block markup (```) to your reply to make sure the error messages are correctly formatted.
    Code tags icon on toolbar
  15. Press Ctrl+V.
    This will paste the output into the code block.
  16. Move the cursor outside of the code block markup before you add any additional text to your reply.
  17. Click the Reply button to post the output.

Please let me know if you have any questions or problems while following those instructions.

You are wright. In this folder is the yaml file.
Here is the shell output:

PS C:\Users\khalilm\AppData\Local\Programs\Arduino IDE> & ".\Arduino IDE"
PS C:\Users\khalilm\AppData\Local\Programs\Arduino IDE>
Arduino IDE 2.0.3
Starting backend process. PID: 8140
Using browser-only version of superagent in non-browser environment
Configuration directory URI: 'file:///c%3A/Users/khalilm/.theia'
Configuring to accept webviews on '^.+\.webview\..+$' hostname.
2023-08-28T09:24:18.190Z root INFO Backend Object.initialize: 3.8 ms [Finished 2.045 s after backend start]
2023-08-28T09:24:18.191Z root INFO Backend Object.configure: 3.1 ms [Finished 2.045 s after backend start]
2023-08-28T09:24:18.192Z root INFO Backend MessagingContribution.onStart: 1.3 ms [Finished 2.045 s after backend start]
2023-08-28T09:24:18.193Z root INFO Backend OSBackendApplicationContribution.configure: 0.5 ms [Finished 2.112 s after backend start]
2023-08-28T09:24:18.194Z root INFO Backend DefaultWorkspaceServer.onStart: 0.5 ms [Finished 2.112 s after backend start]
2023-08-28T09:24:18.195Z root INFO Backend PluginLocalizationBackendContribution.configure: 0.2 ms [Finished 2.112 s after backend start]
2023-08-28T09:24:18.196Z root WARN Backend PluginLocalizationBackendContribution.initialize took longer than the expected maximum 50 milliseconds: 67.3 ms [Finished 2.113 s after backend start]
2023-08-28T09:24:18.196Z root INFO Backend TaskBackendApplicationContribution.onStart: 0.4 ms [Finished 2.113 s after backend start]
2023-08-28T09:24:18.197Z root INFO Backend ElectronTokenBackendContribution.configure: 2.5 ms [Finished 2.115 s after backend start]
2023-08-28T09:24:18.197Z root INFO Backend PluginDeployerContribution.initialize: 0.4 ms [Finished 2.115 s after backend start]
2023-08-28T09:24:18.198Z root INFO Backend ConfigServiceImpl.onStart: 0.9 ms [Finished 2.116 s after backend start]
2023-08-28T09:24:18.199Z root INFO Backend WebviewBackendSecurityWarnings.initialize: 0.4 ms [Finished 2.117 s after backend start]
2023-08-28T09:24:18.199Z root INFO Backend ArduinoDaemonImpl.onStart: 1.2 ms [Finished 2.118 s after backend start]
2023-08-28T09:24:18.199Z root INFO Backend NodeFileUploadService.configure: 2.3 ms [Finished 2.119 s after backend start]
2023-08-28T09:24:18.199Z daemon INFO Starting daemon from C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\node_modules\arduino-ide-extension\build\arduino-cli.exe...
2023-08-28T09:24:18.200Z discovery-log INFO start
2023-08-28T09:24:18.200Z discovery-log INFO start new deferred
2023-08-28T09:24:18.200Z root INFO Backend HostedPluginLocalizationService.initialize: 0.4 ms [Finished 2.119 s after backend start]
2023-08-28T09:24:18.200Z root INFO Backend BoardDiscovery.onStart: 0.8 ms [Finished 2.120 s after backend start]
2023-08-28T09:24:18.201Z root INFO Backend FileDownloadEndpoint.configure: 0.7 ms [Finished 2.120 s after backend start]
2023-08-28T09:24:18.201Z root INFO Backend AuthenticationServiceImpl.onStart: 0.4 ms [Finished 2.122 s after backend start]
2023-08-28T09:24:18.201Z root INFO Backend PluginApiContribution.configure: 0.5 ms [Finished 2.122 s after backend start]
2023-08-28T09:24:18.202Z root INFO Backend HostedPluginReader.configure: 0.6 ms [Finished 2.123 s after backend start]
2023-08-28T09:24:18.202Z root INFO Backend HostedPluginReader.configure: 0.2 ms [Finished 2.123 s after backend start]
2023-08-28T09:24:18.203Z root INFO Backend PlotterBackendContribution.configure: 1.3 ms [Finished 2.125 s after backend start]
2023-08-28T09:24:18.207Z root INFO Theia app listening on http://localhost:50507.
2023-08-28T09:24:18.209Z root INFO Finished starting backend application: 6.9 ms [Finished 2.129 s after backend start]
2023-08-28T09:24:18.210Z root WARN The local plugin referenced by local-dir:/c%3A/Users/khalilm/.arduinoIDE/plugins does not exist.
2023-08-28T09:24:18.211Z root WARN The local plugin referenced by local-dir:/c%3A/Users/khalilm/.arduinoIDE/extensions does not exist.
2023-08-28T09:24:18.211Z root WARN The local plugin referenced by local-dir:C:\Users\khalilm\.arduinoProIDE\plugins does not exist.
Restoring workspace roots: d:\ESP32-S3-SOFTWARE-PROBE\Ethernet_OTW_Update_ESP32\Ethernet_OTW_Update_ESP32_Working.ino
isTempSketch: false. Input was d:\ESP32-S3-SOFTWARE-PROBE\Ethernet_OTW_Update_ESP32\Ethernet_OTW_Update_ESP32_Working.ino\Ethernet_OTW_Update_ESP32_Working.ino.ino
2023-08-28T09:24:18.231Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.231Z root INFO Resolved "cortex-debug" to a VS Code extension "cortex-debug@1.5.1" with engines:
2023-08-28T09:24:18.232Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.232Z root INFO Resolved "vscode-arduino-tools" to a VS Code extension "vscode-arduino-tools@0.0.2-beta.5" with engines:
2023-08-28T09:24:18.232Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.232Z root INFO Resolved "vscode-builtin-cpp" to a VS Code extension "cpp@1.52.1" with engines:
2023-08-28T09:24:18.232Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.233Z root INFO Resolved "vscode-builtin-json" to a VS Code extension "json@1.46.1" with engines:
2023-08-28T09:24:18.234Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.234Z root INFO Resolved "vscode-builtin-json-language-features" to a VS Code extension "json-language-features@1.46.1" with engines:
2023-08-28T09:24:18.234Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.235Z root INFO Resolved "vscode-language-pack-bg" to a VS Code extension "vscode-language-pack-bg@1.48.3" with engines:
2023-08-28T09:24:18.235Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.236Z root INFO Resolved "vscode-language-pack-cs" to a VS Code extension "vscode-language-pack-cs@1.53.2" with engines:
2023-08-28T09:24:18.236Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.236Z root INFO Resolved "vscode-language-pack-de" to a VS Code extension "vscode-language-pack-de@1.53.2" with engines:
2023-08-28T09:24:18.237Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.237Z root INFO Resolved "vscode-language-pack-es" to a VS Code extension "vscode-language-pack-es@1.53.2" with engines:
2023-08-28T09:24:18.237Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.239Z root INFO Resolved "vscode-language-pack-fr" to a VS Code extension "vscode-language-pack-fr@1.53.2" with engines:
2023-08-28T09:24:18.240Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.240Z root INFO Resolved "vscode-language-pack-hu" to a VS Code extension "vscode-language-pack-hu@1.48.3" with engines:
2023-08-28T09:24:18.240Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.240Z root INFO Resolved "vscode-language-pack-it" to a VS Code extension "vscode-language-pack-it@1.53.2" with engines:
2023-08-28T09:24:18.241Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.241Z root INFO Resolved "vscode-language-pack-ja" to a VS Code extension "vscode-language-pack-ja@1.53.2" with engines:
2023-08-28T09:24:18.241Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.241Z root INFO Resolved "vscode-language-pack-ko" to a VS Code extension "vscode-language-pack-ko@1.53.2" with engines:
2023-08-28T09:24:18.246Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.252Z root INFO Resolved "vscode-language-pack-nl" to a VS Code extension "vscode-language-pack-nl@1.48.3" with engines:
2023-08-28T09:24:18.253Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.253Z root INFO Resolved "vscode-language-pack-pl" to a VS Code extension "vscode-language-pack-pl@1.53.2" with engines:
2023-08-28T09:24:18.253Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.253Z root INFO Resolved "vscode-language-pack-pt-BR" to a VS Code extension "vscode-language-pack-pt-BR@1.53.2" with engines:
2023-08-28T09:24:18.253Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.253Z root INFO Resolved "vscode-language-pack-ru" to a VS Code extension "vscode-language-pack-ru@1.53.2" with engines:
2023-08-28T09:24:18.253Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.253Z root INFO Resolved "vscode-language-pack-tr" to a VS Code extension "vscode-language-pack-tr@1.53.2" with engines:
2023-08-28T09:24:18.253Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.254Z root INFO Resolved "vscode-language-pack-uk" to a VS Code extension "vscode-language-pack-uk@1.48.3" with engines:
2023-08-28T09:24:18.254Z root INFO PluginTheiaDirectoryHandler: accepting plugin with path
2023-08-28T09:24:18.254Z root INFO Resolved "vscode-language-pack-zh-hans" to a VS Code extension "vscode-language-pack-zh-hans@1.53.2" with engines:
2023-08-28T09:24:18.282Z root INFO Resolve plugins list: 82.9 ms [Finished 2.204 s after backend start]
2023-08-28T09:24:18.288Z root INFO Deployed backend plugin "marus25.cortex-debug@1.5.1" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\cortex-debug\extension\dist\extension.js": 6.4 ms [Finished 2.210 s after backend start]
2023-08-28T09:24:18.293Z root INFO Deployed backend plugin "arduino.vscode-arduino-tools@0.0.2-beta.5" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-arduino-tools\extension\dist\bundle": 5.3 ms [Finished 2.216 s after backend start]
2023-08-28T09:24:18.321Z root INFO Deployed backend plugin "vscode.cpp@1.52.1" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-builtin-cpp\extension": 28.0 ms [Finished 2.244 s after backend start]
2023-08-28T09:24:18.325Z root INFO Deployed backend plugin "vscode.json@1.46.1" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-builtin-json\extension": 3.4 ms [Finished 2.247 s after backend start]
2023-08-28T09:24:18.326Z root INFO Deployed backend plugin "vscode.json-language-features@1.46.1" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-builtin-json-language-features\extension\client\dist\jsonMain": 1.1 ms [Finished 2.249 s after backend start]
2023-08-28T09:24:18.428Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-bg@1.48.3" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-bg\extension": 102.3 ms [Finished 2.351 s after backend start]
2023-08-28T09:24:18.446Z daemon INFO INFO[0000] Using config file: c:\Users\khalilm\.arduinoIDE\arduino-cli.yaml
INFO[0000] arduino-cli.exe version 0.29.0
INFO[0000] Executing `arduino-cli daemon`
{"IP":"127.0.0.1","Port":"53573"}

2023-08-28T09:24:18.447Z daemon INFO Daemon is running.
2023-08-28T09:24:18.591Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-cs@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-cs\extension": 162.8 ms [Finished 2.514 s after backend start]
2023-08-28T09:24:18.729Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-de@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-de\extension": 138.1 ms [Finished 2.652 s after backend start]
2023-08-28T09:24:18.730Z daemon INFO INFO[0000] Loading hardware from: C:\Users\khalilm\AppData\Local\Arduino15\packages
INFO[0000] Loading package arduino from: C:\Users\khalilm\AppData\Local\Arduino15\packages\arduino\hardware
INFO[0000] Checking signature                            error="opening signature file: open C:\\Users\\khalilm\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json.sig: Das System kann die angegebene Datei nicht finden." index="C:\\Users\\khalilm\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json" signatureFile="C:\\Users\\khalilm\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json.sig"
INFO[0000] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"
INFO[0000] Loaded platform                               platform="arduino:avr@1.8.6"
INFO[0000] Checking existence of 'tools' path: C:\Users\khalilm\AppData\Local\Arduino15\packages\arduino\tools
INFO[0000] Loading tools from dir: C:\Users\khalilm\AppData\Local\Arduino15\packages\arduino\tools
INFO[0000] Loaded tool                                   tool="arduino:arduinoOTA@1.3.0"
INFO[0000] Loaded tool                                   tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
INFO[0000] Loaded tool                                   tool="arduino:avrdude@6.3.0-arduino17"
INFO[0000] Loaded tool                                   tool="arduino:dfu-util@0.11.0-arduino5"
INFO[0000] Loading package builtin from: C:\Users\khalilm\AppData\Local\Arduino15\packages\builtin
INFO[0000] Checking existence of 'tools' path: C:\Users\khalilm\AppData\Local\Arduino15\packages\builtin\tools
INFO[0000] Loading tools from dir: C:\Users\khalilm\AppData\Local\Arduino15\packages\builtin\tools
INFO[0000] Loaded tool                                   tool="builtin:ctags@5.8-arduino11"
INFO[0000] Loaded tool                                   tool="builtin:mdns-discovery@1.0.6"
INFO[0000] Loaded tool                                   tool="builtin:serial-discovery@1.3.3"
INFO[0000] Loaded tool                                   tool="builtin:serial-monitor@0.12.0"
INFO[0000] Loading package esp32 from: C:\Users\khalilm\AppData\Local\Arduino15\packages\esp32\hardware
INFO[0000] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"
INFO[0000] Loaded platform                               platform="esp32:esp32@2.0.11"
INFO[0000] Adding monitor tool                           protocol=serial tool="builtin:serial-monitor"
INFO[0000] Loaded platform                               platform="esp32:esp32@2.0.6"
INFO[0000] Checking existence of 'tools' path: C:\Users\khalilm\AppData\Local\Arduino15\packages\esp32\tools
INFO[0000] Loading tools from dir: C:\Users\khalilm\AppData\Local\Arduino15\packages\esp32\tools
INFO[0000] Loaded tool                                   tool="esp32:esptool_py@4.2.1"
INFO[0000] Loaded tool                                   tool="esp32:esptool_py@4.5.1"
INFO[0000] Loaded tool                                   tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
INFO[0000] Loaded tool                                   tool="esp32:mkspiffs@0.2.3"
INFO[0000] Loaded tool                                   tool="esp32:openocd-esp32@v0.11.0-esp32-20220706"
INFO[0000] Loaded tool                                   tool="esp32:openocd-esp32@v0.11.0-esp32-20221026"
INFO[0000] Loaded tool                                   tool="esp32:riscv32-esp-elf-gcc@esp-2021r2-patch5-8.4.0"
INFO[0000] Loaded tool                                   tool="esp32:riscv32-esp-elf-gcc@gcc8_4_0-esp-2021r2-patch5"
INFO[0000] Loaded tool                                   tool="esp32:riscv32-esp-elf-gdb@11.2_20220823"
INFO[0000] Loaded tool                                   tool="esp32:xtensa-esp-elf-gdb@11.2_20220823"
INFO[0000] Loaded tool                                   tool="esp32:xtensa-esp32-elf-gcc@esp-2021r2-patch5-8.4.0"
INFO[0000] Loaded tool                                   tool="esp32:xtensa-esp32-elf-gcc@gcc8_4_0-esp-2021r2-patch5"
INFO[0000] Loaded tool                                   tool="esp32:xtensa-esp32s2-elf-gcc@esp-2021r2-patch5-8.4.0"
INFO[0000] Loaded tool                                   tool="esp32:xtensa-esp32s2-elf-gcc@gcc8_4_0-esp-2021r2-patch5"
INFO[0000] Loaded tool                                   tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
INFO[0000] Loaded tool                                   tool="esp32:xtensa-esp32s3-elf-gcc@gcc8_4_0-esp-2021r2-patch5"
INFO[0000] Checking signature                            index="C:\\Users\\khalilm\\AppData\\Local\\Arduino15\\package_index.json" signatureFile="C:\\Users\\khalilm\\AppData\\Local\\Arduino15\\package_index.json.sig" trusted=true

2023-08-28T09:24:18.839Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-es@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-es\extension": 109.7 ms [Finished 2.762 s after backend start]
2023-08-28T09:24:18.921Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-fr@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-fr\extension": 81.4 ms [Finished 2.843 s after backend start]
2023-08-28T09:24:18.983Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-hu@1.48.3" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-hu\extension": 62.3 ms [Finished 2.905 s after backend start]
2023-08-28T09:24:19.065Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-it@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-it\extension": 81.6 ms [Finished 2.987 s after backend start]
2023-08-28T09:24:19.148Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ja@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-ja\extension": 83.6 ms [Finished 3.071 s after backend start]
2023-08-28T09:24:19.240Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ko@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-ko\extension": 91.5 ms [Finished 3.162 s after backend start]
2023-08-28T09:24:19.276Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-nl@1.48.3" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-nl\extension": 36.5 ms [Finished 3.199 s after backend start]
2023-08-28T09:24:19.361Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-pl@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-pl\extension": 84.3 ms [Finished 3.283 s after backend start]
2023-08-28T09:24:19.452Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-pt-br@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-pt-BR\extension": 90.8 ms [Finished 3.374 s after backend start]
2023-08-28T09:24:19.550Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-ru@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-ru\extension": 98.2 ms [Finished 3.472 s after backend start]
2023-08-28T09:24:19.640Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-tr@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-tr\extension": 89.8 ms [Finished 3.562 s after backend start]
2023-08-28T09:24:19.703Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-uk@1.48.3" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-uk\extension": 63.3 ms [Finished 3.626 s after backend start]
Opening channel for service path '/services/electron-window-ext'.
Opening channel for service path '/services/electron-window'.
Opening channel for service path '/services/ide-updater'.
2023-08-28T09:24:19.802Z root INFO Deployed backend plugin "ms-ceintl.vscode-language-pack-zh-hans@1.53.2" from "C:\Users\khalilm\AppData\Local\Programs\Arduino IDE\resources\app\plugins\vscode-language-pack-zh-hans\extension": 98.7 ms [Finished 3.724 s after backend start]
2023-08-28T09:24:19.802Z root INFO Deploy plugins list: 82.9 ms [Finished 3.725 s after backend start]
2023-08-28T09:24:20.019Z root WARN Frontend a.configure took longer than the expected maximum 100 milliseconds: 183.0 ms [Finished 1.730 s after frontend start]
2023-08-28T09:25:00.859Z root ERROR Detected an error response during the gRPC core client initialization: code: 13, message: Werkzeug builtin:mdns-discovery@1.0.9 wird heruntergeladen: Get "https://downloads.arduino.cc/discovery/mdns-discovery/mdns-discovery_v1.0.9_Windows_64bit.zip": dial tcp 104.18.13.241:443: connectex: Ein Verbindungsversuch ist fehlgeschlagen, da die Gegenstelle nach einer bestimmten Zeitspanne nicht richtig reagiert hat, oder die hergestellte Verbindung war fehlerhaft, da der verbundene Host nicht reagiert hat.
2023-08-28T09:25:42.953Z root ERROR Detected an error response during the gRPC core client initialization: code: 13, message: Werkzeug builtin:serial-discovery@1.4.0 wird heruntergeladen: Get "https://downloads.arduino.cc/discovery/serial-discovery/serial-discovery_v1.4.0_Windows_64bit.zip": dial tcp 104.18.12.241:443: connectex: Ein Verbindungsversuch ist fehlgeschlagen, da die Gegenstelle nach einer bestimmten Zeitspanne nicht richtig reagiert hat, oder die hergestellte Verbindung war fehlerhaft, da der verbundene Host nicht reagiert hat.

Hello @ptillisch ,

Any thing figured out about the problem?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.