Struggles uploading code despite having connection

Hi!
I have an ESP32 C3 wroom dev module and an ESP32S3 dev module. I have a few different data cables. I've connected and uploaded code to the esp's before using those cables. I did a full software reset on my computer and reinstalled the arduino IDE, and open it to the folder where my previous code was, when I plug in the boards I see their serial port, all good. When I try uploading, it'll do the boot sequence and show incrementing percentages of how much has been uploaded, and finish this process. HOWEVER: it'll then get stuck on the "uploading" stage and I don't know why. Its been a while since I picked them up but I don't suspect physical damage to the chips - they were just laying around for half a year, I think I must be doing something wrong software side. There is nothing (aside from the USB-C) plugged into the ESPS that might be messing with communication.

Potentially related: the code doesn't highlight with any colors, it is all white. Any thoughts?

Photos:



Thanks for your help!

Is the IDE installing updates due to the re-install of the IDE? (I see three notifications in the lower-right). Clear the notifications and reboot the IDE again.

closing / reopening the IDE and restarting my computer didn't change anything unfortunately. Thanks for the suggestion!

Various problems with the ESP32-C3 can be found in a search. One solution was rebooting, another was hold the boot button while uploading, another was re-installing the board support... and more. I wonder if you asked the Espressif forum about the ESP32-C3 you would get better answers than mine?

There are issues with the S3 series, but your upload looks like it completed. Load a blink sketch and roll your esp32 boards back to 2.0.17 and see what happens.

HMMM, I tried this and got a FQBN error and 'zigbee mode' not being available. Where to I go to edit and change this?

I also did it with a freshly opened esp32.

I'll post on the espressif forum and post here if we get an answer. Thanks yall!

Try this board

hmm that didn't work, it got stuck on the uploading screen that time. Is there anything I can send you to get more information about the system? I'm trying an ESP-WROOM-32 board right now and have the arduino ide at 2.3.2. I'm using these board manager links:

https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json
https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
https://www.pjrc.com/teensy/package_teensy_index.json

and everything is updated.

Also: Is the text supposed to be white? It used to have a different color for defines, functions, variables, strings, etc.

Try replacing the esp32 line with the following
https://espressif.github.io/arduino-esp32/package_esp32_index.json

Okay I'm back, sorry for the long delay. Weird behavior: I can upload the code and the serial connection does initiate. I tested it with the code below. I write a pin high and low at two different intervals depending on if serial has started. It immediatly goes to the long pause that shows normal working. So maybe its on my computer's end?


void setup() {
  
  pinMode(8,OUTPUT);
  Serial.begin(115200);
  while(!Serial){
    digitalWrite(8,HIGH);
    delay(500);
    digitalWrite(8,LOW);
    delay(500);
    Serial.println("cycle!");
  }
}

void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(8,HIGH);
  delay(3000);
  digitalWrite(8,LOW);
  delay(3000);
  Serial.println("cycle!");
}

My computer screen looks as such while it is doing the long high/low cycle:

I can't see anything wrong there but that is due to you not showing the Serial monitor. Generally, there is nothing inside the while, once it exits, then print something now that it has connected.

From reading the later discussion in the thread, it seems like maybe this problem is no longer occurring for you, but for the benefit of others who might find this while suffering from the same problem I thought I should add a note that the Arduino IDE developers are tracking this bug here:

Unfortunately it seems to occur intermittently and the developers couldn't reproduce it so we haven't been well positioned for effectively investigating the problem.

It is not. I'm going to ask you to provide some additional information that might help us to identify the problem.


:exclamation: This procedure is not intended to solve the problem. The purpose is to gather more information.


Please do this:

  1. Select File > Quit from the Arduino IDE menus if it is running.
    All Arduino IDE windows will close.
  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.
    A context menu will open.
  5. Select "Open PowerShell window here" from the menu.
    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 for Arduino IDE to finish starting.
  9. Switch back to the PowerShell window.
  10. Press the Ctrl+Shift+A keyboard shortcut.
    This will select all the text in the PowerShell window.
  11. Press the Ctrl+C keyboard shortcut.
    This will copy the contents of the PowerShell window to the clipboard.
  12. Open a forum reply here by clicking the "Reply" button.
  13. 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 block icon on toolbar
  14. Press the Ctrl+V keyboard shortcut.
    This will paste the output into the code block.
  15. Move the cursor outside of the code block markup before you add any additional text to your reply.
  16. Click the "Reply" button to post the output.

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

Great, thanks! I do still ahve the uploading problem some of the time.
I have an empty folder in the first location (probibally not the issue, but just in case):

But in the second location I do have the folder. The powershell output is:

PS C:\Users\Sorin\AppData\Local\Programs\Arduino IDE> .\Arduino IDE
.\Arduino : The term '.\Arduino' is not recognized as the name of a cmdlet, function, script file, or operable
program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ .\Arduino IDE
+ ~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (.\Arduino:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

PS C:\Users\Sorin\AppData\Local\Programs\Arduino IDE> & ".\Arduino IDE"
PS C:\Users\Sorin\AppData\Local\Programs\Arduino IDE>
Arduino IDE 2.3.2
Checking for frontend application configuration customizations. Module path: C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\electron-main.js, destination 'package.json': C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\package.json
Setting 'theia.frontend.config.appVersion' application configuration value to: "2.3.2" (type of string)
Setting 'theia.frontend.config.cliVersion' application configuration value to: "0.35.3" (type of string)
Setting 'theia.frontend.config.buildDate' application configuration value to: "2024-02-20T10:04:35.814Z" (type of string)
Frontend application configuration after modifications: {"applicationName":"Arduino IDE","defaultTheme":{"light":"arduino-theme","dark":"arduino-theme-dark"},"defaultIconTheme":"none","electron":{"windowOptions":{}},"defaultLocale":"","validatePreferencesSchema":false,"preferences":{"window.title":"${rootName}${activeEditorShort}${appName}","files.autoSave":"afterDelay","editor.minimap.enabled":false,"editor.tabSize":2,"editor.scrollBeyondLastLine":false,"editor.quickSuggestions":{"other":false,"comments":false,"strings":false},"editor.maxTokenizationLineLength":500,"editor.bracketPairColorization.enabled":false,"breadcrumbs.enabled":false,"workbench.tree.renderIndentGuides":"none","explorer.compactFolders":false},"appVersion":"2.3.2","cliVersion":"0.35.3","buildDate":"2024-02-20T10:04:35.814Z"}
Starting backend process. PID: 22564
Using browser-only version of superagent in non-browser environment
Configuration directory URI: 'file:///c%3A/Users/Sorin/.arduinoIDE'
Configuring to accept webviews on '^.+\.webview\..+$' hostname.
2024-08-03T22:31:40.641Z root INFO Backend Object.initialize: 5.9 ms [Finished 0.709 s after backend start]
2024-08-03T22:31:40.642Z root INFO Backend Object.configure: 4.8 ms [Finished 0.709 s after backend start]
2024-08-03T22:31:40.642Z root INFO Backend s.onStart: 2.6 ms [Finished 0.709 s after backend start]
2024-08-03T22:31:40.643Z root INFO Backend s.configure: 0.4 ms [Finished 0.743 s after backend start]
2024-08-03T22:31:40.644Z root INFO Backend d.onStart: 0.3 ms [Finished 0.744 s after backend start]
2024-08-03T22:31:40.645Z root INFO Backend d.configure: 0.1 ms [Finished 0.744 s after backend start]
2024-08-03T22:31:40.646Z root INFO Backend d.initialize: 34.6 ms [Finished 0.744 s after backend start]
2024-08-03T22:31:40.646Z root INFO Backend c.onStart: 0.3 ms [Finished 0.744 s after backend start]
2024-08-03T22:31:40.647Z root INFO Backend a.configure: 1.4 ms [Finished 0.745 s after backend start]
2024-08-03T22:31:40.649Z config INFO >>> Initializing CLI configuration...
2024-08-03T22:31:40.649Z root INFO Backend c.initialize: 0.8 ms [Finished 0.746 s after backend start]
2024-08-03T22:31:40.650Z root INFO Backend R.onStart: 1.1 ms [Finished 0.747 s after backend start]
2024-08-03T22:31:40.651Z config INFO Loading CLI configuration from c:\Users\Sorin\.arduinoIDE\arduino-cli.yaml...
2024-08-03T22:31:40.652Z daemon INFO Starting daemon from C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\resources\arduino-cli.exe...
2024-08-03T22:31:40.652Z root INFO Backend a.initialize: 0.6 ms [Finished 0.748 s after backend start]
2024-08-03T22:31:40.652Z root INFO Backend w.onStart: 1.7 ms [Finished 0.749 s after backend start]
2024-08-03T22:31:40.652Z root INFO Backend r.configure: 2.6 ms [Finished 0.749 s after backend start]
2024-08-03T22:31:40.652Z discovery-log INFO start
2024-08-03T22:31:40.652Z discovery-log INFO start new deferred
2024-08-03T22:31:40.652Z root INFO Backend d.initialize: 0.6 ms [Finished 0.750 s after backend start]
2024-08-03T22:31:40.652Z root INFO Backend y.onStart: 2.7 ms [Finished 0.752 s after backend start]
2024-08-03T22:31:40.652Z root INFO Backend r.configure: 2.3 ms [Finished 0.752 s after backend start]
2024-08-03T22:31:40.652Z root INFO Backend a.onStart: 0.6 ms [Finished 0.754 s after backend start]
2024-08-03T22:31:40.652Z root INFO Backend h.configure: 0.6 ms [Finished 0.754 s after backend start]
2024-08-03T22:31:40.652Z root INFO Backend s.configure: 0.2 ms [Finished 0.755 s after backend start]
2024-08-03T22:31:40.652Z root INFO Backend l.configure: 0.1 ms [Finished 0.755 s after backend start]
2024-08-03T22:31:40.656Z root INFO Theia app listening on http://127.0.0.1:63132.
2024-08-03T22:31:40.656Z root INFO Finished starting backend application: 3.7 ms [Finished 0.758 s after backend start]
2024-08-03T22:31:40.656Z root WARN The local plugin referenced by local-dir:/c%3A/Users/Sorin/.arduinoIDE/plugins does not exist.
2024-08-03T22:31:40.657Z root WARN The local plugin referenced by local-dir:/c%3A/Users/Sorin/.arduinoIDE/extensions does not exist.
2024-08-03T22:31:40.657Z root WARN The local plugin referenced by local-dir:C:\Users\Sorin\.arduinoIDE\plugins does not exist.
2024-08-03T22:31:40.675Z config INFO Loaded CLI configuration: {"board_manager":{"additional_urls":["https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json","https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json","https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json","https://www.pjrc.com/teensy/package_teensy_index.json"]},"build_cache":{"compilations_before_purge":10,"ttl":"720h0m0s"},"daemon":{"port":"50051"},"directories":{"builtin":{"libraries":"C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\libraries"},"data":"c:\\Users\\Sorin\\AppData\\Local\\Arduino15","downloads":"C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\staging","user":"c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent"},"library":{"enable_unsafe_install":false},"locale":"en","logging":{"file":"","format":"text","level":"info"},"metrics":{"addr":":9090","enabled":true},"output":{"no_color":false},"sketch":{"always_export_binaries":false},"updater":{"enable_notification":true}}
2024-08-03T22:31:40.675Z config INFO 'directories.data' and 'directories.user' are set in the CLI configuration model.
2024-08-03T22:31:40.675Z config INFO Loaded the CLI configuration.
2024-08-03T22:31:40.693Z config INFO Mapped the CLI configuration: {"dataDirUri":"file:///c%3A/Users/Sorin/AppData/Local/Arduino15","sketchDirUri":"file:///c%3A/Dropbox/allSaves/robotics/1Arduinorecent","additionalUrls":["https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json","https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json","https://www.pjrc.com/teensy/package_teensy_index.json"],"network":"none","locale":"en"}
2024-08-03T22:31:40.693Z config INFO Validating the CLI configuration...
2024-08-03T22:31:40.694Z config INFO The CLI config is valid.
2024-08-03T22:31:40.694Z config INFO <<< Initialized the CLI configuration.
2024-08-03T22:31:40.721Z root INFO Resolve plugins list: 70.0 ms [Finished 0.823 s after backend start]
2024-08-03T22:31:40.851Z daemon INFO time="2024-08-03T15:31:40-07:00" level=info msg="Using config file: c:\\Users\\Sorin\\.arduinoIDE\\arduino-cli.yaml"
time="2024-08-03T15:31:40-07:00" level=info msg="arduino-cli.exe version 0.35.3"
time="2024-08-03T15:31:40-07:00" level=info msg="Executing `arduino-cli daemon`"
Daemon is now listening on 127.0.0.1:63133
{"IP":"127.0.0.1","Port":"63133"}
2024-08-03T22:31:40.851Z daemon INFO Daemon is running.
2024-08-03T22:31:41.103Z daemon INFO time="2024-08-03T15:31:41-07:00" level=info msg="Checking signature" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_index.json" signatureFile="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_index.json.sig" trusted=true
time="2024-08-03T15:31:41-07:00" level=info msg="Missing signature file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_esp32_dev_index.json"
time="2024-08-03T15:31:41-07:00" level=info msg="Missing signature file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_esp32_index.json"
time="2024-08-03T15:31:41-07:00" level=info msg="Missing signature file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_esp32_index.json"
time="2024-08-03T15:31:41-07:00" level=info msg="Missing signature file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_teensy_index.json"
time="2024-08-03T15:31:41-07:00" level=info msg="Loading hardware from: c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages"
time="2024-08-03T15:31:41-07:00" level=info msg="Loading package arduino from: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware"
time="2024-08-03T15:31:41-07:00" level=info msg="Missing signature file" index="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json"
time="2024-08-03T15:31:41-07:00" level=info msg="Adding monitor tool" protocol=serial tool="builtin:serial-monitor"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded platform" platform="arduino:avr@1.8.6"
time="2024-08-03T15:31:41-07:00" level=info msg="Missing signature file" index="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\esp32\\2.0.13\\installed.json"
time="2024-08-03T15:31:41-07:00" level=info msg="Adding monitor tool" protocol=serial tool="builtin:serial-monitor"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded platform" platform="arduino:esp32@2.0.13"
time="2024-08-03T15:31:41-07:00" level=info msg="Checking existence of 'tools' path: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\tools"
time="2024-08-03T15:31:41-07:00" level=info msg="Loading tools from dir: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\tools"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:41-07:00" level=info msg="Loading package builtin from: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\builtin"
time="2024-08-03T15:31:41-07:00" level=info msg="Checking existence of 'tools' path: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\builtin\\tools"
time="2024-08-03T15:31:41-07:00" level=info msg="Loading tools from dir: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\builtin\\tools"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:41-07:00" level=info msg="Loading package esp32 from: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\hardware"
time="2024-08-03T15:31:41-07:00" level=info msg="Missing signature file" index="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\hardware\\esp32\\3.0.4\\installed.json"
2024-08-03T22:31:41.325Z daemon INFO time="2024-08-03T15:31:41-07:00" level=info msg="Adding monitor tool" protocol=serial tool="builtin:serial-monitor"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded platform" platform="esp32:esp32@3.0.4"
time="2024-08-03T15:31:41-07:00" level=info msg="Checking existence of 'tools' path: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\tools"
time="2024-08-03T15:31:41-07:00" level=info msg="Loading tools from dir: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\tools"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:esptool_py@4.5.1"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:openocd-esp32@v0.11.0-esp32-20221026"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:xtensa-esp-elf-gdb@11.2_20220823"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:41-07:00" level=info msg="Loaded tool" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:41-07:00" level=info msg="Adding libraries dir" dir="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\esp32\\2.0.13\\libraries" location=platform
time="2024-08-03T15:31:41-07:00" level=info msg="Adding libraries dir" dir="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\libraries" location=platform
time="2024-08-03T15:31:41-07:00" level=info msg="Adding libraries dir" dir="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\hardware\\esp32\\3.0.4\\libraries" location=platform
time="2024-08-03T15:31:41-07:00" level=info msg="Loading libraries index file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\library_index.json"
2024-08-03T22:31:41.627Z daemon INFO time="2024-08-03T15:31:41-07:00" level=info msg="Adding libraries dir" dir="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\libraries" location=ide
time="2024-08-03T15:31:41-07:00" level=info msg="Adding libraries dir" dir="c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries" location=user
2024-08-03T22:31:42.262Z root ERROR Uncaught Exception:  Error: EPERM: operation not permitted, mkdir 'C:\Users\Sorin\.arduinoIDE\localization-cache\bg'
2024-08-03T22:31:42.262Z root ERROR Error: EPERM: operation not permitted, mkdir 'C:\Users\Sorin\.arduinoIDE\localization-cache\bg'
2024-08-03T22:31:42.491Z daemon INFO time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_BME280_Library: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_BMP280_Library: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_BusIO: invalid library: no header files found"
2024-08-03T22:31:42.491Z daemon INFO time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_DMA_neopixel_library: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_GFX_Library: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_SSD1306: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_Unified_Sensor: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\ArduinoJson: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\GFX_Library_for_Arduino: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Heltec_ESP32_Dev-Boards: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\RadioHead: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\RadioLib: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\TFT_eSPI: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\esp32-camera-master: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\esp8266-oled-ssd1306-master: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\package-2960595141: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\package-435590022: invalid library: no header files found"
time="2024-08-03T15:31:42-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\ssd1306: invalid library: no header files found"
2024-08-03T22:31:42.497Z discovery-log INFO start resolved watching
2024-08-03T22:31:42.499Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="starting discovery builtin:dfu-discovery process"
2024-08-03T22:31:42.499Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="starting discovery builtin:serial-discovery process"
time="2024-08-03T15:31:42-07:00" level=info msg="starting discovery builtin:mdns-discovery process"
2024-08-03T22:31:42.507Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="started discovery builtin:dfu-discovery process"
2024-08-03T22:31:42.508Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="started discovery builtin:serial-discovery process"
time="2024-08-03T15:31:42-07:00" level=info msg="sending command HELLO 1 \"arduino-cli 0.35.3\" to discovery builtin:dfu-discovery"
time="2024-08-03T15:31:42-07:00" level=info msg="sending command HELLO 1 \"arduino-cli 0.35.3\" to discovery builtin:serial-discovery"
time="2024-08-03T15:31:42-07:00" level=info msg="started discovery builtin:mdns-discovery process"
time="2024-08-03T15:31:42-07:00" level=info msg="sending command HELLO 1 \"arduino-cli 0.35.3\" to discovery builtin:mdns-discovery"
2024-08-03T22:31:42.534Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="from discovery builtin:mdns-discovery received message type: hello, message: OK, protocol version: 1"
2024-08-03T22:31:42.534Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="sending command START_SYNC to discovery builtin:mdns-discovery"
2024-08-03T22:31:42.535Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="from discovery builtin:mdns-discovery received message type: start_sync, message: OK"
2024-08-03T22:31:42.542Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="from discovery builtin:serial-discovery received message type: hello, message: OK, protocol version: 1"
2024-08-03T22:31:42.542Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="sending command START_SYNC to discovery builtin:serial-discovery"
time="2024-08-03T15:31:42-07:00" level=info msg="from discovery builtin:serial-discovery received message type: start_sync, message: OK"
2024-08-03T22:31:42.543Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="from discovery builtin:dfu-discovery received message type: hello, message: OK, protocol version: 1"
2024-08-03T22:31:42.543Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="sending command START_SYNC to discovery builtin:dfu-discovery"
2024-08-03T22:31:42.548Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="from discovery builtin:dfu-discovery received message type: start_sync, message: OK"
2024-08-03T22:31:42.569Z daemon INFO time="2024-08-03T15:31:42-07:00" level=info msg="from discovery builtin:serial-discovery received message type: add, port: COM3"
2024-08-03T22:31:42.575Z discovery-log INFO {"eventType":"add","port":{"matchingBoardsList":[],"port":{"address":"COM3","label":"COM3","protocol":"serial","protocolLabel":"Serial Port","propertiesMap":[],"hardwareId":""}},"error":""}
Opening channel for service path '/services/electron-window'.
Opening channel for service path '/services/ide-updater'.
2024-08-03T22:31:43.560Z root WARN Frontend a.configure took longer than the expected maximum 100 milliseconds: 199.3 ms [Finished 2.711 s after frontend start]
2024-08-03T22:31:43.560Z root WARN A command editor.action.toggleStickyScroll is already registered.
2024-08-03T22:31:43.809Z root WARN Frontend keybindings.onStart took longer than the expected maximum 100 milliseconds: 127.2 ms [Finished 2.882 s after frontend start]
2024-08-03T22:31:43.832Z root ERROR Uncaught Exception:  Error: EPERM: operation not permitted, open 'c:\Users\Sorin\.arduinoIDE\recentworkspace.json'
2024-08-03T22:31:43.832Z root ERROR Error: EPERM: operation not permitted, open 'c:\Users\Sorin\.arduinoIDE\recentworkspace.json'
2024-08-03T22:31:43.998Z root WARN Frontend D.onStart took longer than the expected maximum 100 milliseconds: 247.8 ms [Finished 3.231 s after frontend start]
2024-08-03T22:31:44.041Z root INFO Start frontend contributions: 822.1 ms [Finished 3.244 s after frontend start]
2024-08-03T22:31:44.041Z root INFO Changed application state from 'init' to 'started_contributions'.
2024-08-03T22:31:44.086Z root INFO Changed application state from 'started_contributions' to 'attached_shell'.
2024-08-03T22:31:44.087Z root INFO >>> Restoring the layout state...
2024-08-03T22:31:44.090Z root INFO ------- SERIALIZED LAYOUT DATA -------
2024-08-03T22:31:44.091Z root INFO {"version":5,"mainPanel":{"main":{"type":"tab-area","widgets":[{"constructionOptions":{"factoryId":"code-editor-opener","options":{"counter":0,"kind":"navigatable","uri":"file:///c%3A/Dropbox/allSaves/mudd/projects/FICUS%20LAB/hot%20wire%20anemometer/rev_c_demo/rev_c_demo.ino"}},"innerWidgetState":"{\"cursorState\":[{\"inSelectionMode\":false,\"selectionStart\":{\"lineNumber\":70,\"column\":1},\"position\":{\"lineNumber\":70,\"column\":1}}],\"viewState\":{\"scrollLeft\":0,\"firstPosition\":{\"lineNumber\":54,\"column\":1},\"firstPositionDeltaTop\":-7},\"contributionsState\":{\"editor.contrib.folding\":{\"lineCount\":115,\"provider\":\"indent\",\"foldedImports\":false},\"editor.contrib.wordHighlighter\":false}}"}],"currentIndex":0}},"mainPanelPinned":[false],"bottomPanel":{"config":{"main":{"type":"tab-area","widgets":[{"constructionOptions":{"factoryId":"outputView"},"innerWidgetState":"{\"locked\":false}"},{"constructionOptions":{"factoryId":"serial-monitor"}}],"currentIndex":1}},"pinned":[false,false],"size":181,"expanded":true},"leftPanel":{"type":"sidepanel","items":[{"widget":{"constructionOptions":{"factoryId":"arduino-sketchbook-widget"}},"rank":1,"expanded":false,"pinned":false},{"widget":{"constructionOptions":{"factoryId":"boards-list-widget"}},"rank":2,"expanded":true,"pinned":false},{"widget":{"constructionOptions":{"factoryId":"library-list-widget"}},"rank":3,"expanded":false,"pinned":false},{"widget":{"constructionOptions":{"factoryId":"debug"},"innerWidgetState":"{\"parts\":[{\"partId\":\"debug:threads:-1\",\"collapsed\":false,\"hidden\":false,\"originalContainerId\":\"debug:view-container:-1\",\"originalContainerTitle\":{\"label\":\"debug\",\"iconClass\":\"codicon codicon-debug-alt\",\"closeable\":true},\"widget\":{\"constructionOptions\":{\"factoryId\":\"debug:threads\"},\"innerWidgetState\":\"{}\"}},{\"partId\":\"debug:frames:-1\",\"collapsed\":false,\"hidden\":false,\"originalContainerId\":\"debug:view-container:-1\",\"originalContainerTitle\":{\"label\":\"debug\",\"iconClass\":\"codicon codicon-debug-alt\",\"closeable\":true},\"widget\":{\"constructionOptions\":{\"factoryId\":\"debug:frames\"},\"innerWidgetState\":\"{}\"}},{\"partId\":\"debug:variables:-1\",\"collapsed\":false,\"hidden\":false,\"originalContainerId\":\"debug:view-container:-1\",\"originalContainerTitle\":{\"label\":\"debug\",\"iconClass\":\"codicon codicon-debug-alt\",\"closeable\":true},\"widget\":{\"constructionOptions\":{\"factoryId\":\"debug:variables\"},\"innerWidgetState\":\"{}\"}},{\"partId\":\"debug:watch:-1\",\"collapsed\":false,\"hidden\":false,\"originalContainerId\":\"debug:view-container:-1\",\"originalContainerTitle\":{\"label\":\"debug\",\"iconClass\":\"codicon codicon-debug-alt\",\"closeable\":true},\"widget\":{\"constructionOptions\":{\"factoryId\":\"debug:watch\"},\"innerWidgetState\":\"{}\"}},{\"partId\":\"debug:breakpoints:-1\",\"collapsed\":false,\"hidden\":false,\"originalContainerId\":\"debug:view-container:-1\",\"originalContainerTitle\":{\"label\":\"debug\",\"iconClass\":\"codicon codicon-debug-alt\",\"closeable\":true},\"widget\":{\"constructionOptions\":{\"factoryId\":\"debug:breakpoints\"},\"innerWidgetState\":\"{}\"}}],\"title\":{\"label\":\"debug\",\"iconClass\":\"codicon codicon-debug-alt\",\"closeable\":true}}"},"rank":4,"expanded":false,"pinned":false},{"widget":{"constructionOptions":{"factoryId":"search-view-container"},"innerWidgetState":"{\"parts\":[{\"partId\":\"search-in-workspace\",\"collapsed\":false,\"hidden\":false,\"originalContainerId\":\"search-view-container\",\"originalContainerTitle\":{\"label\":\"Search\",\"iconClass\":\"codicon codicon-search\",\"closeable\":true},\"widget\":{\"constructionOptions\":{\"factoryId\":\"search-in-workspace\"},\"innerWidgetState\":\"{\\\"matchCaseState\\\":{\\\"className\\\":\\\"codicon codicon-case-sensitive\\\",\\\"enabled\\\":false,\\\"title\\\":\\\"Match Case\\\"},\\\"wholeWordState\\\":{\\\"className\\\":\\\"codicon codicon-whole-word\\\",\\\"enabled\\\":false,\\\"title\\\":\\\"Match Whole Word\\\"},\\\"regExpState\\\":{\\\"className\\\":\\\"codicon codicon-regex\\\",\\\"enabled\\\":false,\\\"title\\\":\\\"Use Regular Expression\\\"},\\\"includeIgnoredState\\\":{\\\"className\\\":\\\"codicon codicon-eye\\\",\\\"enabled\\\":false,\\\"title\\\":\\\"Include Ignored Files\\\"},\\\"showSearchDetails\\\":false,\\\"searchInWorkspaceOptions\\\":{\\\"matchCase\\\":false,\\\"matchWholeWord\\\":false,\\\"useRegExp\\\":false,\\\"includeIgnored\\\":false,\\\"include\\\":[],\\\"exclude\\\":[],\\\"maxResults\\\":2000},\\\"searchTerm\\\":\\\"\\\",\\\"replaceTerm\\\":\\\"\\\",\\\"showReplaceField\\\":false,\\\"searchHistoryState\\\":{\\\"history\\\":[],\\\"index\\\":0},\\\"replaceHistoryState\\\":{\\\"history\\\":[],\\\"index\\\":0},\\\"includeHistoryState\\\":{\\\"history\\\":[],\\\"index\\\":0},\\\"excludeHistoryState\\\":{\\\"history\\\":[],\\\"index\\\":0}}\"}}],\"title\":{\"label\":\"Search\",\"iconClass\":\"fa fa-arduino-search\",\"closeable\":true}}"},"rank":5,"expanded":false,"pinned":false}],"size":268},"rightPanel":{"type":"sidepanel","items":[]},"activeWidgetId":"serial-monitor"}
2024-08-03T22:31:44.092Z root INFO ------- END SERIALIZED LAYOUT DATA -------
2024-08-03T22:31:44.737Z root INFO <<< The layout has been successfully restored.
2024-08-03T22:31:44.741Z root INFO Initialize the workbench layout: 674.5 ms [Finished 3.971 s after frontend start]
2024-08-03T22:31:44.741Z root INFO Changed application state from 'attached_shell' to 'initialized_layout'.
2024-08-03T22:31:44.818Z root ERROR Request markAsRecentlyOpened failed with error: EPERM: operation not permitted, open 'c:\Users\Sorin\.arduinoIDE\recent-sketches.json' Error: EPERM: operation not permitted, open 'c:\Users\Sorin\.arduinoIDE\recent-sketches.json'
2024-08-03T22:31:44.826Z root ERROR Error: Unable to write file '\user\settings.json' (NoPermissions (FileSystemError): Error: EPERM: operation not permitted, open 'c:\Users\Sorin\.arduinoIDE\settings.json')
    at x.asFileOperationError (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3705937)
    at x.rethrowAsFileOperationError (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3705869)
    at x.writeFile (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3703595)
    at async x.write (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3700792)
    at async d.doWrite (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3685953)
Caused by: Error: Request 'writeFile' failed
    at Proxy.<anonymous> (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3077682)
    at b.writeFile (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3790355)
    at t.DelegatingFileSystemProvider.writeFile (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3776146)
    at x.doWriteUnbufferedQueued (file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3715716)
    at file:///C:/Users/Sorin/AppData/Local/Programs/Arduino%20IDE/resources/app/lib/frontend/bundle.js:2:3715402
Caused by: NoPermissions (FileSystemError): Error: EPERM: operation not permitted, open 'c:\Users\Sorin\.arduinoIDE\settings.json'
    at u (C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\main.js:2:1350008)
    at P.toFileSystemProviderError (C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\main.js:2:1373994)
    at P.open (C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\main.js:2:1367390)
    at async P.writeFile (C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\main.js:2:1366874)
    at async g.onRequest (C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\main.js:2:1107033)
    at async c.handleRequest (C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\main.js:2:1097928)
2024-08-03T22:31:45.946Z root INFO Frontend application start: 2479.1 ms [Finished 6.048 s after backend start]
Checking for update
2024-08-03T22:31:45.997Z root INFO Replace loading indicator with ready workbench UI (animation): 861.2 ms [Finished 4.837 s after frontend start]
2024-08-03T22:31:46.008Z root INFO Changed application state from 'initialized_layout' to 'ready'.
2024-08-03T22:31:46.008Z root WARN Linked preference "workbench.colorCustomizations" not found.
2024-08-03T22:31:46.244Z daemon INFO time="2024-08-03T15:31:46-07:00" level=info msg="Updating index" url="https://downloads.arduino.cc/packages/package_index.tar.bz2"
time="2024-08-03T15:31:46-07:00" level=info msg="Updating libraries index"
time="2024-08-03T15:31:46-07:00" level=info msg="Starting download" url="https://downloads.arduino.cc/packages/package_index.tar.bz2"
time="2024-08-03T15:31:46-07:00" level=info msg="Starting download" url="https://downloads.arduino.cc/libraries/library_index.tar.bz2"
2024-08-03T22:31:46.350Z root INFO core-client-provider [platform-index] Downloading index: package_index.tar.bz2

2024-08-03T22:31:46.351Z root INFO core-client-provider [library-index] Downloading index: library_index.tar.bz2

Update for version 2.3.2 is not available (latest version: 2.3.2, downgrade is allowed).
2024-08-03T22:31:46.910Z daemon INFO time="2024-08-03T15:31:46-07:00" level=info msg="Updating index" url="https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json"
time="2024-08-03T15:31:46-07:00" level=info msg="Starting download" url="https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json"
2024-08-03T22:31:47.632Z fwuploader ERROR Error: Process exited with exit code: 1
    at ChildProcess.<anonymous> (C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\main.js:2:639977)
    at ChildProcess.emit (node:events:514:28)
    at Process.onexit (node:internal/child_process:291:12)
2024-08-03T22:31:47.632Z root ERROR Request updatableBoards failed with error: Process exited with exit code: 1 Error: Process exited with exit code: 1
    at ChildProcess.<anonymous> (C:\Users\Sorin\AppData\Local\Programs\Arduino IDE\resources\app\lib\backend\main.js:2:639977)
    at ChildProcess.emit (node:events:514:28)
    at Process.onexit (node:internal/child_process:291:12)
2024-08-03T22:31:47.633Z daemon INFO time="2024-08-03T15:31:47-07:00" level=info msg="Updating index" url="https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json"
time="2024-08-03T15:31:47-07:00" level=info msg="Starting download" url="https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json"
time="2024-08-03T15:31:47-07:00" level=info msg="Updating index" url="https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json"
time="2024-08-03T15:31:47-07:00" level=info msg="Starting download" url="https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json"
time="2024-08-03T15:31:47-07:00" level=info msg="Updating index" url="https://www.pjrc.com/teensy/package_teensy_index.json"
time="2024-08-03T15:31:47-07:00" level=info msg="Starting download" url="https://www.pjrc.com/teensy/package_teensy_index.json"
2024-08-03T22:31:50.601Z root INFO core-client-provider [platform-index] Downloading index: package_esp32_dev_index.json

2024-08-03T22:31:50.662Z root INFO core-client-provider [platform-index] Downloading index: package_esp32_index.json

2024-08-03T22:31:51.284Z root INFO core-client-provider [platform-index] Downloading index: package_esp32_index.json

2024-08-03T22:31:51.286Z root INFO core-client-provider [platform-index] Downloading index: package_teensy_index.json

2024-08-03T22:31:51.321Z root ERROR Request recentlyOpenedSketches failed with error: EPERM: operation not permitted, open 'c:\Users\Sorin\.arduinoIDE\recent-sketches.json' Error: EPERM: operation not permitted, open 'c:\Users\Sorin\.arduinoIDE\recent-sketches.json'
2024-08-03T22:31:51.528Z daemon INFO time="2024-08-03T15:31:51-07:00" level=info msg="Checking signature" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_index.json" signatureFile="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_index.json.sig" trusted=true
time="2024-08-03T15:31:51-07:00" level=info msg="Missing signature file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_esp32_dev_index.json"
time="2024-08-03T15:31:51-07:00" level=info msg="Missing signature file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_esp32_index.json"
time="2024-08-03T15:31:51-07:00" level=info msg="Missing signature file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_esp32_index.json"
time="2024-08-03T15:31:51-07:00" level=info msg="Missing signature file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\package_teensy_index.json"
time="2024-08-03T15:31:51-07:00" level=info msg="Loading hardware from: c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages"
time="2024-08-03T15:31:51-07:00" level=info msg="Loading package arduino from: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware"
time="2024-08-03T15:31:51-07:00" level=info msg="Missing signature file" index="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\installed.json"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Adding monitor tool" protocol=serial tool="builtin:serial-monitor"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded platform" platform="arduino:avr@1.8.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Missing signature file" index="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\esp32\\2.0.13\\installed.json"
time="2024-08-03T15:31:51-07:00" level=info msg="Adding monitor tool" protocol=serial tool="builtin:serial-monitor"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded platform" platform="arduino:esp32@2.0.13"
time="2024-08-03T15:31:51-07:00" level=info msg="Checking existence of 'tools' path: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\tools"
time="2024-08-03T15:31:51-07:00" level=info msg="Loading tools from dir: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\tools"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Loading package builtin from: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\builtin"
time="2024-08-03T15:31:51-07:00" level=info msg="Checking existence of 'tools' path: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\builtin\\tools"
time="2024-08-03T15:31:51-07:00" level=info msg="Loading tools from dir: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\builtin\\tools"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Loading package esp32 from: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\hardware"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Missing signature file" index="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\hardware\\esp32\\3.0.4\\installed.json"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:dfu-util@0.11.0-arduino5"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avr-gcc@7.3.0-atmel3.6.1-arduino7"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:arduinoOTA@1.3.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:ctags@5.8-arduino11"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:dfu-discovery@0.1.2"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="arduino:avrdude@6.3.0-arduino17"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:mdns-discovery@1.0.9"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-monitor@0.14.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="builtin:serial-discovery@1.4.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Tool required for debug" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="Adding monitor tool" protocol=serial tool="builtin:serial-monitor"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded platform" platform="esp32:esp32@3.0.4"
time="2024-08-03T15:31:51-07:00" level=info msg="Checking existence of 'tools' path: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\tools"
time="2024-08-03T15:31:51-07:00" level=info msg="Loading tools from dir: C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\tools"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:esp-rv32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:esp-x32@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:esp-xs2@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:esp-xs3@2302"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:esp32-arduino-libs@idf-release_v5.1-b6b4727c58"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:esptool_py@4.5.1"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:esptool_py@4.6"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:mklittlefs@3.0.0-gnu12-dc7f933"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:mkspiffs@0.2.3"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:openocd-esp32@v0.11.0-esp32-20221026"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:openocd-esp32@v0.12.0-esp32-20240318"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:riscv32-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:xtensa-esp-elf-gdb@11.2_20220823"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:xtensa-esp-elf-gdb@12.1_20231023"
time="2024-08-03T15:31:51-07:00" level=info msg="Loaded tool" tool="esp32:xtensa-esp32s3-elf-gcc@esp-2021r2-patch5-8.4.0"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command QUIT to discovery builtin:serial-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:serial-discovery received message type: quit, message: OK"
time="2024-08-03T15:31:51-07:00" level=info msg="killing discovery builtin:serial-discovery process"
time="2024-08-03T15:31:51-07:00" level=info msg="Discovery event channel closed builtin:serial-discovery. Exiting goroutine."
time="2024-08-03T15:31:51-07:00" level=info msg="Closed and removed discovery builtin:serial-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command QUIT to discovery builtin:mdns-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:mdns-discovery received message type: quit, message: OK"
time="2024-08-03T15:31:51-07:00" level=info msg="killing discovery builtin:mdns-discovery process"
time="2024-08-03T15:31:51-07:00" level=info msg="Discovery event channel closed builtin:mdns-discovery. Exiting goroutine."
time="2024-08-03T15:31:51-07:00" level=info msg="Closed and removed discovery builtin:mdns-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command QUIT to discovery builtin:dfu-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:dfu-discovery received message type: quit, message: OK"
time="2024-08-03T15:31:51-07:00" level=info msg="killing discovery builtin:dfu-discovery process"
time="2024-08-03T15:31:51-07:00" level=info msg="Discovery event channel closed builtin:dfu-discovery. Exiting goroutine."
time="2024-08-03T15:31:51-07:00" level=info msg="Closed and removed discovery builtin:dfu-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="starting discovery builtin:serial-discovery process"
2024-08-03T22:31:51.534Z discovery-log INFO {"eventType":"remove","port":{"matchingBoardsList":[],"port":{"address":"COM3","label":"COM3","protocol":"serial","protocolLabel":"Serial Port","propertiesMap":[],"hardwareId":""}},"error":""}
2024-08-03T22:31:51.549Z daemon INFO time="2024-08-03T15:31:51-07:00" level=info msg="started discovery builtin:serial-discovery process"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command HELLO 1 \"arduino-cli 0.35.3\" to discovery builtin:serial-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:serial-discovery received message type: hello, message: OK, protocol version: 1"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command START_SYNC to discovery builtin:serial-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:serial-discovery received message type: start_sync, message: OK"
time="2024-08-03T15:31:51-07:00" level=info msg="starting discovery builtin:mdns-discovery process"
2024-08-03T22:31:51.677Z discovery-log INFO {"eventType":"add","port":{"matchingBoardsList":[],"port":{"address":"COM3","label":"COM3","protocol":"serial","protocolLabel":"Serial Port","propertiesMap":[],"hardwareId":""}},"error":""}
2024-08-03T22:31:51.678Z daemon INFO time="2024-08-03T15:31:51-07:00" level=info msg="started discovery builtin:mdns-discovery process"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command HELLO 1 \"arduino-cli 0.35.3\" to discovery builtin:mdns-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:serial-discovery received message type: add, port: COM3"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:mdns-discovery received message type: hello, message: OK, protocol version: 1"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command START_SYNC to discovery builtin:mdns-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:mdns-discovery received message type: start_sync, message: OK"
time="2024-08-03T15:31:51-07:00" level=info msg="starting discovery builtin:dfu-discovery process"
time="2024-08-03T15:31:51-07:00" level=info msg="started discovery builtin:dfu-discovery process"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command HELLO 1 \"arduino-cli 0.35.3\" to discovery builtin:dfu-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:dfu-discovery received message type: hello, message: OK, protocol version: 1"
time="2024-08-03T15:31:51-07:00" level=info msg="sending command START_SYNC to discovery builtin:dfu-discovery"
time="2024-08-03T15:31:51-07:00" level=info msg="from discovery builtin:dfu-discovery received message type: start_sync, message: OK"
time="2024-08-03T15:31:51-07:00" level=info msg="Adding libraries dir" dir="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\avr\\1.8.6\\libraries" location=platform
time="2024-08-03T15:31:51-07:00" level=info msg="Adding libraries dir" dir="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\arduino\\hardware\\esp32\\2.0.13\\libraries" location=platform
time="2024-08-03T15:31:51-07:00" level=info msg="Adding libraries dir" dir="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\packages\\esp32\\hardware\\esp32\\3.0.4\\libraries" location=platform
time="2024-08-03T15:31:51-07:00" level=info msg="Loading libraries index file" index="c:\\Users\\Sorin\\AppData\\Local\\Arduino15\\library_index.json"
2024-08-03T22:31:51.916Z sketches-service WARN Mismatching sketch file <rf95_client.pde> and sketch folder name <SPI_HOPERF_RFM95>. Skipping
2024-08-03T22:31:51.916Z sketches-service WARN Mismatching sketch file <rf95_client.pde> and sketch folder name <SPI_HOPERF_RFM95>. Skipping
2024-08-03T22:31:51.916Z sketches-service WARN Mismatching sketch file <rf95_client.pde> and sketch folder name <SPI_HOPERF_RFM95>. Skipping
2024-08-03T22:31:52.282Z root ERROR ---- !!!SLOW!!! DURATION: search took 6275.258 ms. Args: [{"type":"Updatable"}] ----
2024-08-03T22:31:52.283Z daemon INFO time="2024-08-03T15:31:52-07:00" level=info msg="Adding libraries dir" dir="C:\\Users\\Sorin\\AppData\\Local\\Arduino15\\libraries" location=ide
time="2024-08-03T15:31:52-07:00" level=info msg="Adding libraries dir" dir="c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries" location=user
2024-08-03T22:31:52.835Z daemon INFO time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_BME280_Library: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_BMP280_Library: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_BusIO: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_DMA_neopixel_library: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_GFX_Library: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_SSD1306: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Adafruit_Unified_Sensor: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\ArduinoJson: invalid library: no header files found"
2024-08-03T22:31:52.835Z daemon INFO time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\GFX_Library_for_Arduino: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\Heltec_ESP32_Dev-Boards: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\RadioHead: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\RadioLib: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\TFT_eSPI: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\esp32-camera-master: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\esp8266-oled-ssd1306-master: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\package-2960595141: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\package-435590022: invalid library: no header files found"
time="2024-08-03T15:31:52-07:00" level=warning msg="Error loading library" error="rpc error: code = Internal desc = loading library from c:\\Dropbox\\allSaves\\robotics\\1Arduinorecent\\libraries\\ssd1306: invalid library: no header files found"

Great! I do see something in the logs that looks relevant:

Do you have any idea why Arduino IDE is not being allowed to write to paths like c:\Users\Sorin\.arduinoIDE\settings.json? It stores data in files under c:\Users\Sorin and so it must have write access there, which is normally the case.

Is there some special security restrictions on your computer? Or maybe the hard drive is full?

Ahh, I know most likely what it could be. I thought I had fixed the issue, but a while ago I (stupidly) ran chmod -R 744 on a root directory from an ubuntu terminal that I had open, which changed a lot of files to read write instead of read execute. I did a windows thing to fully reset the permissions on the computer, but later was running into some similar permission issues and just ran "chmod -R 777" on the same directory. In VS code I'm currently not able to run a python interpreter, so maybe the permissions in the local python install area are messed up? Is there any location you want me to check the stat of?

stat python3.11
File: python3.11
Size: 4096 Blocks: 8 IO Block: 4096 directory
Device: 820h/2080d Inode: 5346 Links: 6
Access: (0755/drwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2024-07-28 18:10:25.684877609 -0700
Modify: 2024-06-25 17:10:14.246553232 -0700
Change: 2024-06-25 17:10:14.246553232 -0700
Birth: 2024-06-25 16:52:05.636570300 -0700

:/$ stat lib
File: lib -> usr/lib
Size: 7 Blocks: 0 IO Block: 4096 symbolic link
Device: 820h/2080d Inode: 1188 Links: 1
Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2024-08-03 16:53:17.967444200 -0700
Modify: 2023-11-22 13:36:20.256298855 -0800
Change: 2024-06-25 16:52:02.506570300 -0700
Birth: 2024-06-25 16:52:02.506570300 -0700

$ stat mnt
File: mnt
Size: 4096 Blocks: 8 IO Block: 4096 directory
Device: 820h/2080d Inode: 24578 Links: 5
Access: (0755/drwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2024-08-03 11:30:40.773139881 -0700
Modify: 2024-06-25 16:52:17.526570300 -0700
Change: 2024-06-25 16:52:17.526570300 -0700
Birth: 2024-06-25 16:52:02.506570300 -0700

Linux people scare me a little with the ability to fully break a computer on accident haha

Is this using Windows Subsystem for Linux? Unfortunately I'm not knowledgeable in this area. I use Linux daily (even though I use a Windows machine as my primary since it is the most popular in the Arduino community), but I use a dedicated Linux machine and so have never had any reason to mess around with WSL.


You can try this:

  1. Start Windows File Explorer.
  2. Navigate to the c:\Users\Sorin folder.
  3. Right click on the folder.
    A context menu will open.
  4. Select "Properties" from the menu.
    The "Sorin Properties" dialog will open.
  5. Select the "Security" tab in the dialog.
  6. Click on your Sorin user account under the "Group or user names" field of the dialog.

Now examine the contents of the "Permissions for Sorin" field of the dialog. On my system, where Arduino IDE works as expected, I see a checkmark under the "Allow" column for all permissions other than "Special permissions".

When you do that, do you notice that some of the relevant permissions (e.g., "Modify", "Write") are not allowed for the Sorin user in that folder?

image

When I try to add all permissions:


When I click continue, it goes through and changes permissions for a lot of folders but fails on some, i.e:
image
It also failed on application data, some microsoft things etc, but they don't seem relevant to arduino stuff.

I see you have the "Account Unknown" account selected from the "Group or user names " field of the dialog:

Click on the "Sorin Jayaweera" account under that field and then check the permissions:

I also have an "Account Unknown" user in that field and see the same lack of permissions for that user, but if I select the "per" account from that field (my Windows username is "per"), then I see the expected permissions under the "Permissions for per" field of the dialog:

image

hmmm, under my user all the permissions are there already

aha! its fixed! I have color! Sweet sweet color how I've missed you! Thank you for your help! And somehow that fixed the serial comms issue as well!