From 2827220fb35bcb28c02de925b694174b1b69d73c Mon Sep 17 00:00:00 2001 From: ArduinoShop <72320885+ArduinoShop@users.noreply.github.com> Date: Mon, 23 May 2022 08:38:23 -0600 Subject: [PATCH 1/5] Update to the "AppImage" Linux Launcher new shell script.. --- AppImage Launcher/Launcher | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 AppImage Launcher/Launcher diff --git a/AppImage Launcher/Launcher b/AppImage Launcher/Launcher new file mode 100644 index 000000000..4623ab49c --- /dev/null +++ b/AppImage Launcher/Launcher @@ -0,0 +1,7 @@ +The "newest" nightly buildss of the IDE 2.0 use the AppImage (fltpak) file format. You should be able to double click on the ".AppImage" from the File Manager and get the IDE up and running. + +For quite some time now I have been a part of the Arduino team but only working on the Linux Launcher. + +I submitted some scripts quite some time ago but they are out of date. I am includeing the updated scripts which are much more useful. The idea is to create proper ".desktop" files so that you can launch the IDE from the Gnome dock. There are actually 2 versions of the ".desktop" file supporting a local user only mode or a systemwide mode. This way you could have a "stable" release available to all users on the Linux system and a separate "nightly" version for a development user. + +I am not a "git" expert and do not remember how to update ( or is it merge? ) the files originally sent to Arduino. So I am posting them here. From 71256e0bb554529ee852e43083fec357fe16a900 Mon Sep 17 00:00:00 2001 From: ArduinoShop <72320885+ArduinoShop@users.noreply.github.com> Date: Mon, 23 May 2022 08:41:55 -0600 Subject: [PATCH 2/5] uploaded the scripts and other necessary files yes - the undefined directory is necessary --- AppImage Launcher/Linux_Install.sh | 244 ++++++++++ AppImage Launcher/cc.arduino.IDE2.png | Bin 0 -> 18982 bytes AppImage Launcher/desktop.template | 12 + .../undefined/Arduino IDE/2022-05-23_log.log | 443 ++++++++++++++++++ 4 files changed, 699 insertions(+) create mode 100644 AppImage Launcher/Linux_Install.sh create mode 100644 AppImage Launcher/cc.arduino.IDE2.png create mode 100644 AppImage Launcher/desktop.template create mode 100644 AppImage Launcher/undefined/Arduino IDE/2022-05-23_log.log diff --git a/AppImage Launcher/Linux_Install.sh b/AppImage Launcher/Linux_Install.sh new file mode 100644 index 000000000..029c43911 --- /dev/null +++ b/AppImage Launcher/Linux_Install.sh @@ -0,0 +1,244 @@ +#!/bin/sh + +############################################################################ +## Linux install script for Arduino IDE 2.0 - contributed by Art Sayler ## +## https://github.com/arduinoshop ## +## +## +############################################################################ + +echo "\nLinux install script for the Arduino IDE 2.0 ${SCRIPT_PATH}\n" + +MODE=U +YN=n +RESOURCE_NAME=cc.arduino.IDE2 +RED='\033[0;31m' +NOCOLOR='\033[0m' + +if [ -z $1 ] +then + echo no option selected - defaulting to single user instalation + echo "usage: ./Linux_Install.sh [local] | [ulocal]" + echo " local - installs IDE for user $USER only ( default if no option given )" + echo " ulocal - uninstall IDE from user $USER" + echo "usage: sudo ./Linux_Install.sh [system] | [usystem]" + echo " system - install IDE systemwide for all users (Currently not supported)" + echo " usystem - uninstall IDE systemwide from all users\n" + echo "Both local and system installations may be used on the same computer" + echo "for example - a stable release installed systemwide and a nightly for a development user" + echo "The icons are the same but a mouse-over will reveal the difference\n" + + MSG="Install IDE 2.0 for user $USER only?" + +elif [ $1 = local ] +then + MSG="Install IDE 2.0 for user $USER only?" +elif [ $1 = ulocal ] +then + MSG="UnInstall IDE 2.0 from user $USER?" + MODE=u +elif [ $1 = usystem ] +then + MSG="UnInstall IDE 2.0 system wide (all users will be affected)?" + MODE=s +elif [ $1 = system ] +then + MSG="Install IDE 2.0 system wide (all users will have access)?" + MODE=S +fi + +# Get absolute path from which this script file was executed +# (Could be changed to "pwd -P" to resolve symlinks to their target) +SCRIPT_PATH=$( pwd -P ) +LIB_PATH=$SCRIPT_PATH +EXE_PATH=$SCRIPT_PATH +# echo S_PATH = $SCRIPT_PATH + +# Install by simply copying desktop file +simple_install_f() { + echo +# Using Simple - MODE = $MODE +###### Remove local user installation + + if [ $MODE = u ] + then + echo Uninstalling IDE 2.0 from user $USER + echo "Deleting ${HOME}/.local/share/applications/${RESOURCE_NAME}.desktop" + rm ${HOME}/.local/share/applications/${RESOURCE_NAME}.desktop + + echo "Deleting ${HOME}/.local/lib/${RESOURCE_NAME}" + rm -rf ${HOME}/.local/lib/${RESOURCE_NAME} + + echo "Deleting ${HOME}/.local/bin/${RESOURCE_NAME}" + rm ${HOME}/.local/bin/${RESOURCE_NAME} + +# echo "Installation directory and it's contents including this script can be removed" +# read -p "Delete directory ${SCRIPT_PATH}? (YES for the affirmative)" YN +# if [ -z $YN ] +# then +# echo exiting; exit +# elif [ $YN = YES ] +# then +# echo "Removing Directory ${SCRIPT_PATH}" +# fi + fi + +###### Perform local user only installation + if [ $MODE = U ] + then + + LIB_PATH=${HOME}/.local/lib/${RESOURCE_NAME} + EXE_PATH=${HOME}/.local/bin + + if [ $YN = Y ] || [ $YN = y ] + then + mkdir -p $LIB_PATH + echo -n "Copying AppImage file... " + cp -rf * ${HOME}/.local/lib/${RESOURCE_NAME} + echo "File copied...\n" + fi + + mkdir -p "${HOME}/.local/bin" + rm -f ${HOME}/.local/bin/${RESOURCE_NAME} + cp ${HOME}/.local/lib/${RESOURCE_NAME}/*.AppImage ${HOME}/.local/bin/${RESOURCE_NAME} +# ln -s ${HOME}/.local/lib/${RESOURCE_NAME}/arduino-ide_nightly-20220521_Linux_64bit.AppImage ${HOME}/.local/bin/${RESOURCE_NAME} +# a link would be more elegant but can't link *.AppImage + + # Create a temp dir accessible by all users + TMP_DIR=`mktemp --directory` + + # Create *.desktop file using the existing template file + sed -e "s,,${EXE_PATH}/${RESOURCE_NAME},g" \ + -e "s,,local,g" \ + -e "s,,${LIB_PATH}/${RESOURCE_NAME}.png,g" "${SCRIPT_PATH}/desktop.template" > "${TMP_DIR}/${RESOURCE_NAME}.desktop" + + mkdir -p "${HOME}/.local/share/applications" + cp "${TMP_DIR}/${RESOURCE_NAME}.desktop" "${HOME}/.local/share/applications/" + echo "Installing Launcher and Icon" + + # mkdir -p "${HOME}/.local/share/metainfo" + # cp "${SCRIPT_PATH}/lib/appdata.xml" "${HOME}/.local/share/metainfo/${RESOURCE_NAME}.appdata.xml" + +gsettings set org.gnome.shell favorite-apps "$(gsettings get org.gnome.shell favorite-apps | sed s/.$//), '${RESOURCE_NAME}']" + # Clean up temp dir + rm "${TMP_DIR}/${RESOURCE_NAME}.desktop" + rmdir "${TMP_DIR}" + + echo + echo 'The IDE 2 icon should now appear in the "Show Application" menu (Super+A) - probably in last position.' + echo 'You could right-click on this icon and "Add to Favorites" to add it to the Dock.' + fi + +######## System Wide Install / UnInstall + if [ $MODE = s ] || [ $MODE = S ] + then + if [ $USER != root ] + then + echo "$RED You must be SuperUser to make SystemWide changes$NOCOLOR\007" + echo "Use sudo ./Linux_Install.sh [option]\n" + exit + fi + fi + +######## System Wide UnInstall + + if [ $MODE = s ] + then + echo Uninstalling IDE 2.0 systemwide + + if [ -f /usr/local/share/applications/${RESOURCE_NAME}s.desktop ] + then + echo "Deleting /usr/local/share/applications/${RESOURCE_NAME}.desktop" + rm /usr/local/share/applications/${RESOURCE_NAME}.desktop + fi + + if [ -f /usr/local/bin/${RESOURCE_NAME}.AppImage ] + then + echo "Deleting /usr/local/bin/${RESOURCE_NAME}.AppImage" + rm /usr/local/bin/${RESOURCE_NAME}.AppImage + fi + + if [ -d /usr/local/lib/${RESOURCE_NAME} ] + then + echo "Deleting Directory /usr/local/lib/${RESOURCE_NAME}" + rm -rf /usr/local/lib/${RESOURCE_NAME} + else + echo "/usr/local/lib/${RESOURCE_NAME} does not exist" + fi + exit + fi + +###### Perform SystemWide installation + if [ $MODE = S ] + then + + Ver=`lsb_release -d` + Ver=`echo $Ver | sed -e "s,Description: ,,g"` + Rev=`echo $Ver | sed -e "s,Ubuntu ,,g" \ + -e "s, LTS,,g"` + + if [ "$Rev" = "22.04" ]; then + echo "$Ver detected" + echo "$RED Ubuntu $Rev had a known bug in early releases$NOCOLOR thah would not allow AppImages to run" + echo "If you find that the IDE will not start you may wish to try" + echo "adding the FUSE library by running:" + echo " sudo apt install libfuse2 " + echo "Ref: https://itsfoss.com/cant-run-appimage-ubuntu" + echo + echo "You may perform this installation and update the FUSE libray later," + echo "a system reboot after installing the FUSE lib is recommended." + echo + fi + + echo -n "Copying downloaded files to /usr/local/lib... " + + LIB_PATH=/usr/local/lib/${RESOURCE_NAME} + EXE_PATH=/usr/local/bin + mkdir -p $LIB_PATH + cp -rf * $LIB_PATH +# rm -f $EXE_PATH/${RESOURCE_NAME} +# cp ${HOME}/.local/lib/${RESOURCE_NAME}/*.AppImage ${HOME}/.local/bin/${RESOURCE_NAME} + cp $LIB_PATH/*.AppImage $EXE_PATH/${RESOURCE_NAME}.AppImage + cp -rf $LIB_PATH/undefined $EXE_PATH + echo "Files copied...\n" +# fi + + # Create a temp dir accessible by all users + TMP_DIR=`mktemp --directory` + + # Create *.desktop file using the existing template file + sed -e "s,,${EXE_PATH}/${RESOURCE_NAME}.AppImage,g" \ + -e "s,,system,g" \ + -e "s,,${LIB_PATH}/${RESOURCE_NAME}.png,g" "${SCRIPT_PATH}/desktop.template" > "${TMP_DIR}/${RESOURCE_NAME}s.desktop" + + cp "${TMP_DIR}/${RESOURCE_NAME}s.desktop" "/usr/local/share/applications/" + echo "Launcher and Icon Installed\n" + echo "Go to \"Show Application\" ( button in lower left / \"Windows Key\")" + echo "Search for \"Arduino\" - you will see an Icon labeled \"2.0 system\"" + echo "click on this icon to run the IDE or right-click to add it to the Dock\n" + +gsettings set org.gnome.shell favorite-apps "$(gsettings get org.gnome.shell favorite-apps | sed s/.$//), '${RESOURCE_NAME}']" + + # Clean up temp dir + rm "${TMP_DIR}/${RESOURCE_NAME}s.desktop" + rmdir "${TMP_DIR}" + fi + } + +# --- main Script starts here --- + +read -p "$MSG (Y/N) " YN + +if [ -z $YN ] +then + echo OK - exiting + exit +elif [ $YN = n ] +then + echo OK - No is No... exiting + exit +fi + +simple_install_f + +exit diff --git a/AppImage Launcher/cc.arduino.IDE2.png b/AppImage Launcher/cc.arduino.IDE2.png new file mode 100644 index 0000000000000000000000000000000000000000..b407e39c94d5e23afc3f95ae5fad225e147a1258 GIT binary patch literal 18982 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 literal 0 HcmV?d00001 diff --git a/AppImage Launcher/desktop.template b/AppImage Launcher/desktop.template new file mode 100644 index 000000000..0f7b062f5 --- /dev/null +++ b/AppImage Launcher/desktop.template @@ -0,0 +1,12 @@ +[Desktop Entry] +Type=Application +Name=IDE 2.0 +GenericName=Arduino IDE 2 +Comment=Open-source electronics prototyping platform +Exec= +Icon= +Terminal=false +Categories=Development;IDE;Electronics; +MimeType=text/x-arduino; +Keywords=embedded electronics;electronics;avr;microcontroller; +StartupWMClass=Arduino IDE diff --git a/AppImage Launcher/undefined/Arduino IDE/2022-05-23_log.log b/AppImage Launcher/undefined/Arduino IDE/2022-05-23_log.log new file mode 100644 index 000000000..f85d97135 --- /dev/null +++ b/AppImage Launcher/undefined/Arduino IDE/2022-05-23_log.log @@ -0,0 +1,443 @@ +2022-05-23 06:30:47 Using browser-only version of superagent in non-browser environment +2022-05-23 06:30:47 Configuring to accept webviews on '^.+\.webview\..+$' hostname. +2022-05-23 06:30:47 root INFO Configuration directory URI: 'file:///home/ide2/.theia' +2022-05-23 06:30:47 root INFO Theia app listening on http://localhost:46819. +2022-05-23 06:30:47 root WARN The local plugin referenced by local-dir:/home/ide2/.arduinoIDE/plugins does not exist. +2022-05-23 06:30:47 root WARN The local plugin referenced by local-dir:/home/ide2/.arduinoIDE/extensions does not exist. +2022-05-23 06:30:47 root WARN The local plugin referenced by local-dir:/home/ide2/.arduinoProIDE/plugins does not exist. +2022-05-23 06:30:47 root WARN Backend LocalizationBackendContribution.initialize is slow, took: 53.3 ms +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "cortex-debug" to a VS Code extension "cortex-debug@0.3.10" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-arduino-tools" to a VS Code extension "vscode-arduino-tools@0.0.2-beta.2" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-builtin-cpp" to a VS Code extension "cpp@1.52.1" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-builtin-json" to a VS Code extension "json@1.46.1" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-builtin-json-language-features" to a VS Code extension "json-language-features@1.46.1" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-language-pack-de" to a VS Code extension "vscode-language-pack-de@1.53.2" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-language-pack-fr" to a VS Code extension "vscode-language-pack-fr@1.53.2" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-language-pack-ja" to a VS Code extension "vscode-language-pack-ja@1.53.2" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-language-pack-nl" to a VS Code extension "vscode-language-pack-nl@1.48.3" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-language-pack-tr" to a VS Code extension "vscode-language-pack-tr@1.53.2" with engines: +2022-05-23 06:30:47 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 06:30:47 root INFO Resolved "vscode-language-pack-zh-hans" to a VS Code extension "vscode-language-pack-zh-hans@1.53.2" with engines: +2022-05-23 06:30:47 root INFO Deploying backend plugin "cortex-debug@0.3.10" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/cortex-debug/extension/dist/extension" +2022-05-23 06:30:47 root WARN Backend DefaultWorkspaceServer.onStart is slow, took: 81.8 ms +2022-05-23 06:30:47 root INFO Deploying backend plugin "vscode-arduino-tools@0.0.2-beta.2" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-arduino-tools/extension/dist/bundle" +2022-05-23 06:30:47 root INFO Deploying backend plugin "cpp@1.52.1" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-builtin-cpp/extension" +2022-05-23 06:30:47 root INFO Deploying backend plugin "json@1.46.1" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-builtin-json/extension" +2022-05-23 06:30:47 root INFO Deploying backend plugin "json-language-features@1.46.1" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-builtin-json-language-features/extension/client/dist/jsonMain" +2022-05-23 06:30:48 root INFO Deploying backend plugin "vscode-language-pack-de@1.53.2" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-language-pack-de/extension" +2022-05-23 06:30:48 root INFO Deploying backend plugin "vscode-language-pack-fr@1.53.2" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-language-pack-fr/extension" +2022-05-23 06:30:48 daemon INFO Starting daemon from /tmp/.mount_arduin57j7EP/resources/app/node_modules/arduino-ide-extension/build/arduino-cli... +2022-05-23 06:30:48 root WARN Backend ConfigServiceImpl.onStart is slow, took: 398.2 ms +2022-05-23 06:30:48 root INFO Deploying backend plugin "vscode-language-pack-ja@1.53.2" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-language-pack-ja/extension" +2022-05-23 06:30:48 daemon INFO Using config file: /home/ide2/.arduinoIDE/arduino-cli.yaml +2022-05-23 06:30:48 daemon INFO arduino-cli version 0.21.0 +2022-05-23 06:30:48 daemon INFO Executing `arduino-cli daemon` +2022-05-23 06:30:48 daemon INFO Setting up Prometheus metrics on :9090/metrics +2022-05-23 06:30:48 daemon INFO {"IP":"127.0.0.1","Port":"44313"} +2022-05-23 06:30:48 daemon INFO Daemon is running. +2022-05-23 06:30:48 root WARN Backend AuthenticationServiceImpl.onStart is slow, took: 104.0 ms +2022-05-23 06:30:48 root INFO Deploying backend plugin "vscode-language-pack-nl@1.48.3" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-language-pack-nl/extension" +2022-05-23 06:30:48 root INFO Deploying backend plugin "vscode-language-pack-tr@1.53.2" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-language-pack-tr/extension" +2022-05-23 06:30:49 root INFO Deploying backend plugin "vscode-language-pack-zh-hans@1.53.2" from "/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-language-pack-zh-hans/extension" +2022-05-23 06:30:49 root INFO Deploy plugins list took: 1768.4 ms +2022-05-23 06:30:51 daemon INFO Adding libraries dir [dir: /home/ide2/Arduino/libraries, location: user] +2022-05-23 06:30:51 daemon INFO URL: https://downloads.arduino.cc/packages/package_index.json +2022-05-23 06:30:51 daemon INFO Updating index [url: https://downloads.arduino.cc/packages/package_index.json] +2022-05-23 06:30:51 root INFO Git askpass helper is listening on http://127.0.0.1:42023. +2022-05-23 06:30:51 root INFO Using Git [2.34.1] from the PATH. (/usr/bin/git) +2022-05-23 06:30:51 root WARN Frontend s.configure is slow, took: 189.2 ms +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/body-parser +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/cookie +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/dompurify +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/express +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/fs-extra +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/lodash.debounce +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/lodash.throttle +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/markdown-it +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/react +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/react-dom +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/react-virtualized +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/route-parser +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/safer-buffer +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/ws +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/yargs +2022-05-23 06:30:51 root WARN Failed to resolve module: @theia/monaco +2022-05-23 06:30:51 root WARN Failed to resolve module: @theia/editor +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/multer +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/rimraf +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/tar-fs +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/uuid +2022-05-23 06:30:51 root WARN Failed to resolve module: @theia/navigator +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/p-queue +2022-05-23 06:30:51 root WARN Failed to resolve module: @theia/preferences +2022-05-23 06:30:51 root WARN Failed to resolve module: @theia/editor-preview +2022-05-23 06:30:51 root WARN Failed to resolve module: @theia/keymaps +2022-05-23 06:30:51 root WARN Failed to resolve module: @theia/messages +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/diff +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/mime +2022-05-23 06:30:51 root WARN Failed to resolve module: filenamify +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/request +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/atob +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/auth0-js +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/btoa +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/dateformat +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/deepmerge +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/glob +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/google-protobuf +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/js-yaml +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/keytar +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/ncp +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/node-fetch +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/ps-tree +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/react-select +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/react-tabs +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/temp +2022-05-23 06:30:51 root WARN Failed to resolve module: @types/which +2022-05-23 06:30:51 root INFO Updating index: package_index.json completed. +2022-05-23 06:30:51 root WARN Frontend keybindings.onStart is slow, took: 333.6 ms +2022-05-23 06:30:51 root INFO Updating index: package_index.json.sig completed. +2022-05-23 06:30:51 daemon INFO Checking signature [error: opening signature file: open /tmp/215538426.sig: no such file or directory, index: /tmp/215538426, signaturefile: /tmp/215538426.sig] +2022-05-23 06:30:51 daemon INFO URL: https://raw.githubusercontent.com/dbuezas/lgt8fx/master/package_lgt8fx_index.json +2022-05-23 06:30:51 daemon INFO Updating index [url: https://raw.githubusercontent.com/dbuezas/lgt8fx/master/package_lgt8fx_index.json] +2022-05-23 06:30:52 root INFO Updating index: package_lgt8fx_index.json completed. +2022-05-23 06:30:52 daemon INFO Checking signature [error: opening signature file: open /tmp/036149820.sig: no such file or directory, index: /tmp/036149820, signaturefile: /tmp/036149820.sig] +2022-05-23 06:30:52 daemon INFO Updating libraries index +2022-05-23 06:30:53 root INFO Updating index: library_index.json.gz completed. +2022-05-23 06:30:53 root INFO Updating index: library_index.json.sig completed. +2022-05-23 06:30:53 root ERROR d.registerSchemas is taking more than 500.0 ms, new schemas are ignored. +2022-05-23 06:30:53 daemon INFO Checking signature [index: /home/ide2/.arduino15/package_index.json, signaturefile: /home/ide2/.arduino15/package_index.json.sig, trusted: true] +2022-05-23 06:30:53 daemon INFO Checking signature [error: opening signature file: open /home/ide2/.arduino15/package_lgt8fx_index.json.sig: no such file or directory, index: /home/ide2/.arduino15/package_lgt8fx_index.json, signaturefile: /home/ide2/.arduino15/package_lgt8fx_index.json.sig] +2022-05-23 06:30:53 daemon INFO Loading hardware from: /home/ide2/.arduino15/packages +2022-05-23 06:30:53 daemon INFO Loading package LGT8fx Boards from: /home/ide2/.arduino15/packages/LGT8fx Boards/hardware +2022-05-23 06:30:53 daemon INFO Checking signature [error: opening signature file: open /home/ide2/.arduino15/packages/LGT8fx Boards/hardware/avr/1.0.6/installed.json.sig: no such file or directory, index: /home/ide2/.arduino15/packages/LGT8fx Boards/hardware/avr/1.0.6/installed.json, signaturefile: /home/ide2/.arduino15/packages/LGT8fx Boards/hardware/avr/1.0.6/installed.json.sig] +2022-05-23 06:30:53 daemon INFO Adding monitor tool [protocol: serial, tool: builtin:serial-monitor] +2022-05-23 06:30:53 daemon INFO Loaded platform [platform: {ID:"LGT8fx Boards:avr",Installed:"1.0.6",Latest:"1.0.6",Name:"LGT8fx Boards"}] +2022-05-23 06:30:53 daemon INFO Loading package arduino from: /home/ide2/.arduino15/packages/arduino/hardware +2022-05-23 06:30:53 daemon INFO Checking signature [error: opening signature file: open /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/installed.json.sig: no such file or directory, index: /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/installed.json, signaturefile: /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/installed.json.sig] +2022-05-23 06:30:53 daemon INFO Adding monitor tool [protocol: serial, tool: builtin:serial-monitor] +2022-05-23 06:30:53 daemon INFO Loaded platform [platform: {ID:"arduino:avr",Installed:"1.8.5",Latest:"1.8.5",Name:"Arduino AVR Boards"}] +2022-05-23 06:30:53 daemon INFO Checking existence of 'tools' path: /home/ide2/.arduino15/packages/arduino/tools +2022-05-23 06:30:53 daemon INFO Loading tools from dir: /home/ide2/.arduino15/packages/arduino/tools +2022-05-23 06:30:53 daemon INFO Loaded tool [tool: Version: 1.3.0 Systems: [OS: i686-linux-gnu, OS: x86_64-linux-gnu, OS: arm-linux-gnueabihf, OS: aarch64-linux-gnu, OS: i386-apple-darwin11, OS: i686-mingw32]] +2022-05-23 06:30:53 daemon INFO Loaded tool [tool: Version: 7.3.0-atmel3.6.1-arduino7 Systems: [OS: arm-linux-gnueabihf, OS: aarch64-linux-gnu, OS: x86_64-apple-darwin14, OS: i686-mingw32, OS: i686-linux-gnu, OS: x86_64-linux-gnu]] +2022-05-23 06:30:53 daemon INFO Loaded tool [tool: Version: 6.3.0-arduino17 Systems: [OS: arm-linux-gnueabihf, OS: aarch64-linux-gnu, OS: x86_64-apple-darwin12, OS: x86_64-linux-gnu, OS: i686-linux-gnu, OS: i686-mingw32]] +2022-05-23 06:30:53 daemon INFO Loading package builtin from: /home/ide2/.arduino15/packages/builtin +2022-05-23 06:30:53 daemon INFO Checking existence of 'tools' path: /home/ide2/.arduino15/packages/builtin/tools +2022-05-23 06:30:53 daemon INFO Loading tools from dir: /home/ide2/.arduino15/packages/builtin/tools +2022-05-23 06:30:53 daemon INFO Loaded tool [tool: Version: 5.8-arduino11 Systems: [OS: i686-pc-linux-gnu, OS: x86_64-pc-linux-gnu, OS: i686-mingw32, OS: x86_64-apple-darwin, OS: arm-linux-gnueabihf, OS: aarch64-linux-gnu]] +2022-05-23 06:30:53 daemon INFO Loaded tool [tool: Version: 1.0.5 Systems: [OS: i686-pc-linux-gnu, OS: x86_64-pc-linux-gnu, OS: i686-mingw32, OS: x86_64-mingw32, OS: x86_64-apple-darwin, OS: arm-linux-gnueabihf, OS: arm64-linux-gnueabihf]] +2022-05-23 06:30:53 daemon INFO Loaded tool [tool: Version: 1.2.1] +2022-05-23 06:30:53 daemon INFO Loaded tool [tool: Version: 1.3.2 Systems: [OS: i686-pc-linux-gnu, OS: x86_64-pc-linux-gnu, OS: i686-mingw32, OS: x86_64-mingw32, OS: x86_64-apple-darwin, OS: arm-linux-gnueabihf, OS: arm64-linux-gnueabihf]] +2022-05-23 06:30:53 daemon INFO Loaded tool [tool: Version: 0.9.1 Systems: [OS: i686-pc-linux-gnu, OS: x86_64-pc-linux-gnu, OS: i686-mingw32, OS: x86_64-mingw32, OS: x86_64-apple-darwin, OS: arm-linux-gnueabihf, OS: arm64-linux-gnueabihf]] +2022-05-23 06:30:53 daemon INFO Adding libraries dir [dir: /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/libraries, location: platform] +2022-05-23 06:30:53 daemon INFO Adding libraries dir [dir: /home/ide2/.arduino15/packages/LGT8fx Boards/hardware/avr/1.0.6/libraries, location: platform] +2022-05-23 06:30:54 daemon INFO starting discovery builtin:serial-discovery process +2022-05-23 06:30:54 daemon INFO starting discovery builtin:mdns-discovery process +2022-05-23 06:30:54 daemon INFO started discovery builtin:serial-discovery process +2022-05-23 06:30:54 daemon INFO sending command HELLO 1 "arduino-cli 0.21.0" to discovery builtin:serial-discovery +2022-05-23 06:30:54 daemon INFO started discovery builtin:mdns-discovery process +2022-05-23 06:30:54 daemon INFO sending command HELLO 1 "arduino-cli 0.21.0" to discovery builtin:mdns-discovery +2022-05-23 06:30:54 daemon INFO from discovery builtin:serial-discovery received message type: hello, message: OK, protocol version: 1 +2022-05-23 06:30:54 daemon INFO from discovery builtin:mdns-discovery received message type: hello, message: OK, protocol version: 1 +2022-05-23 06:30:54 daemon INFO sending command START_SYNC to discovery builtin:mdns-discovery +2022-05-23 06:30:54 daemon INFO sending command START_SYNC to discovery builtin:serial-discovery +2022-05-23 06:30:54 daemon INFO from discovery builtin:mdns-discovery received message type: start_sync, message: OK +2022-05-23 06:30:54 daemon INFO from discovery builtin:serial-discovery received message type: start_sync, message: OK +2022-05-23 06:30:54 daemon INFO from discovery builtin:serial-discovery received message type: add, port: /dev/ttyS0 +2022-05-23 06:30:54 root WARN Frontend i.onStart is slow, took: 2728.2 ms +2022-05-23 06:30:54 root INFO Board config changed: +2022-05-23 06:30:54 root INFO Board config changed: +2022-05-23 06:30:54 root INFO Changed application state from 'init' to 'started_contributions'. +2022-05-23 06:30:54 root INFO Changed application state from 'started_contributions' to 'attached_shell'. +2022-05-23 06:30:54 root INFO >>> Restoring the layout state... +2022-05-23 06:30:54 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65] Waiting for backend deployment took: 262.7 ms [Finished 5.769 s after frontend start] +2022-05-23 06:30:54 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802) starting instance +2022-05-23 06:30:55 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65] Sync of 11 plugins took: 563.1 ms [Finished 6.332 s after frontend start] +2022-05-23 06:30:56 root INFO <<< The layout has been successfully restored. +2022-05-23 06:30:56 root INFO Changed application state from 'attached_shell' to 'initialized_layout'. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][marus25.cortex-debug]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][arduino.vscode-arduino-tools]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][vscode.cpp]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][vscode.json]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][vscode.json-language-features]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-de]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-fr]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-ja]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-nl]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-tr]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-zh-hans]: Loaded contributions. +2022-05-23 06:30:56 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65] Load contributions of 11 plugins took: 113.8 ms [Finished 7.620 s after frontend start] +2022-05-23 06:30:56 root WARN Frontend u.onDidInitializeLayout is slow, took: 114.9 ms +2022-05-23 06:30:56 root INFO Finished loading frontend application after 7.677 seconds +2022-05-23 06:30:56 root WARN 'cpp' language is remapped from 'source.cpp.embedded.macro' to 'source.cpp' scope +2022-05-23 06:30:56 root WARN a registered grammar configuration for 'cpp' language is overridden +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): PluginManagerExtImpl/init() +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(cortex-debug@0.3.10 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] Debugger contribution has been registered: cortex-debug +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(vscode-arduino-tools@0.0.2-beta.2 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(cpp@1.52.1 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(json@1.46.1 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(json-language-features@1.46.1 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(vscode-language-pack-de@1.53.2 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(vscode-language-pack-fr@1.53.2 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(vscode-language-pack-ja@1.53.2 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(vscode-language-pack-nl@1.48.3 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(vscode-language-pack-tr@1.53.2 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): initializing(vscode-language-pack-zh-hans@1.53.2 with /tmp/.mount_arduin57j7EP/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): PluginManagerExtImpl/loadPlugin(/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-builtin-json-language-features/extension/client/dist/jsonMain) +2022-05-23 06:30:57 root INFO [hosted-plugin: 10802] PLUGIN_HOST(10802): PluginManagerExtImpl/loadPlugin(/tmp/.mount_arduin57j7EP/resources/app/plugins/vscode-arduino-tools/extension/dist/bundle) +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][marus25.cortex-debug]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][arduino.vscode-arduino-tools]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][vscode.cpp]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][vscode.json]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][vscode.json-language-features]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-de]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-fr]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-ja]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-nl]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-tr]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65][ms-ceintl.vscode-language-pack-zh-hans]: Started plugin. +2022-05-23 06:30:57 root INFO [b244862f-5be0-4ce5-8b69-65a738785a65] Start of 11 plugins took: 674.8 ms [Finished 8.300 s after frontend start] +2022-05-23 06:30:57 root INFO Starting language server: arduino:avr:uno +2022-05-23 06:30:57 root INFO Changed application state from 'initialized_layout' to 'ready'. +2022-05-23 06:30:57 daemon INFO inventory.Store.ConfigFileUsed() /home/ide2/.arduino15/inventory.yaml +2022-05-23 06:30:57 daemon INFO inventory.Store.ConfigFileUsed() /home/ide2/.arduino15/inventory.yaml +2022-05-23 06:30:57 daemon INFO Searching tools required for board arduino:avr:uno +2022-05-23 06:30:57 daemon INFO Required tool [tool: {ToolName:"arduinoOTA",ToolVersion:"1.3.0",ToolPackager:"arduino"}] +2022-05-23 06:30:57 daemon INFO Required tool [tool: {ToolName:"avr-gcc",ToolVersion:"7.3.0-atmel3.6.1-arduino7",ToolPackager:"arduino"}] +2022-05-23 06:30:57 daemon INFO Required tool [tool: {ToolName:"avrdude",ToolVersion:"6.3.0-arduino17",ToolPackager:"arduino"}] +2022-05-23 06:30:57 daemon INFO Adding libraries dir [dir: /home/art/Downloads/arduino-1.8.10/libraries, location: ide] +2022-05-23 06:30:57 daemon INFO Adding libraries dir [dir: /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/libraries, location: platform] +2022-05-23 06:30:57 daemon INFO Adding libraries dir [dir: /home/ide2/Arduino/libraries, location: user] +2022-05-23 06:30:58 root WARN monospace assumptions have been violated, therefore disabling monospace optimizations! +2022-05-23 08:27:01 Using browser-only version of superagent in non-browser environment +2022-05-23 08:27:01 Configuring to accept webviews on '^.+\.webview\..+$' hostname. +2022-05-23 08:27:01 root INFO Configuration directory URI: 'file:///home/ide2/.theia' +2022-05-23 08:27:01 root INFO Theia app listening on http://localhost:32937. +2022-05-23 08:27:01 root WARN The local plugin referenced by local-dir:/home/ide2/.arduinoIDE/plugins does not exist. +2022-05-23 08:27:01 root WARN The local plugin referenced by local-dir:/home/ide2/.arduinoIDE/extensions does not exist. +2022-05-23 08:27:01 root WARN The local plugin referenced by local-dir:/home/ide2/.arduinoProIDE/plugins does not exist. +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "cortex-debug" to a VS Code extension "cortex-debug@0.3.10" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-arduino-tools" to a VS Code extension "vscode-arduino-tools@0.0.2-beta.2" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-builtin-cpp" to a VS Code extension "cpp@1.52.1" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-builtin-json" to a VS Code extension "json@1.46.1" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-builtin-json-language-features" to a VS Code extension "json-language-features@1.46.1" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-language-pack-de" to a VS Code extension "vscode-language-pack-de@1.53.2" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-language-pack-fr" to a VS Code extension "vscode-language-pack-fr@1.53.2" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-language-pack-ja" to a VS Code extension "vscode-language-pack-ja@1.53.2" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-language-pack-nl" to a VS Code extension "vscode-language-pack-nl@1.48.3" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-language-pack-tr" to a VS Code extension "vscode-language-pack-tr@1.53.2" with engines: +2022-05-23 08:27:01 root INFO PluginTheiaDirectoryHandler: accepting plugin with path +2022-05-23 08:27:01 root INFO Resolved "vscode-language-pack-zh-hans" to a VS Code extension "vscode-language-pack-zh-hans@1.53.2" with engines: +2022-05-23 08:27:01 root INFO Deploying backend plugin "cortex-debug@0.3.10" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/cortex-debug/extension/dist/extension" +2022-05-23 08:27:01 root INFO Deploying backend plugin "vscode-arduino-tools@0.0.2-beta.2" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-arduino-tools/extension/dist/bundle" +2022-05-23 08:27:01 root INFO Deploying backend plugin "cpp@1.52.1" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-builtin-cpp/extension" +2022-05-23 08:27:01 root INFO Deploying backend plugin "json@1.46.1" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-builtin-json/extension" +2022-05-23 08:27:01 root INFO Deploying backend plugin "json-language-features@1.46.1" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-builtin-json-language-features/extension/client/dist/jsonMain" +2022-05-23 08:27:01 root INFO Deploying backend plugin "vscode-language-pack-de@1.53.2" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-language-pack-de/extension" +2022-05-23 08:27:01 root INFO Deploying backend plugin "vscode-language-pack-fr@1.53.2" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-language-pack-fr/extension" +2022-05-23 08:27:01 daemon INFO Starting daemon from /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/arduino-ide-extension/build/arduino-cli... +2022-05-23 08:27:01 root WARN Backend ConfigServiceImpl.onStart is slow, took: 260.1 ms +2022-05-23 08:27:02 root INFO Deploying backend plugin "vscode-language-pack-ja@1.53.2" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-language-pack-ja/extension" +2022-05-23 08:27:02 daemon INFO Using config file: /home/ide2/.arduinoIDE/arduino-cli.yaml +2022-05-23 08:27:02 daemon INFO arduino-cli version 0.21.0 +2022-05-23 08:27:02 daemon INFO Executing `arduino-cli daemon` +2022-05-23 08:27:02 daemon INFO Setting up Prometheus metrics on :9090/metrics +2022-05-23 08:27:02 daemon INFO {"IP":"127.0.0.1","Port":"33477"} +2022-05-23 08:27:02 daemon INFO Daemon is running. +2022-05-23 08:27:02 root WARN Backend AuthenticationServiceImpl.onStart is slow, took: 99.3 ms +2022-05-23 08:27:02 root INFO Deploying backend plugin "vscode-language-pack-nl@1.48.3" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-language-pack-nl/extension" +2022-05-23 08:27:02 root INFO Deploying backend plugin "vscode-language-pack-tr@1.53.2" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-language-pack-tr/extension" +2022-05-23 08:27:02 root INFO Deploying backend plugin "vscode-language-pack-zh-hans@1.53.2" from "/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-language-pack-zh-hans/extension" +2022-05-23 08:27:02 root INFO Deploy plugins list took: 952.1 ms +2022-05-23 08:27:03 daemon INFO Adding libraries dir [dir: /home/ide2/Arduino/libraries, location: user] +2022-05-23 08:27:03 daemon INFO URL: https://downloads.arduino.cc/packages/package_index.json +2022-05-23 08:27:03 daemon INFO Updating index [url: https://downloads.arduino.cc/packages/package_index.json] +2022-05-23 08:27:03 root INFO Git askpass helper is listening on http://127.0.0.1:45275. +2022-05-23 08:27:03 root INFO Using Git [2.34.1] from the PATH. (/usr/bin/git) +2022-05-23 08:27:04 root WARN Frontend s.configure is slow, took: 190.7 ms +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/body-parser +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/cookie +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/dompurify +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/express +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/fs-extra +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/lodash.debounce +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/lodash.throttle +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/markdown-it +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/react +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/react-dom +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/react-virtualized +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/route-parser +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/safer-buffer +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/ws +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/yargs +2022-05-23 08:27:04 root WARN Failed to resolve module: @theia/monaco +2022-05-23 08:27:04 root WARN Failed to resolve module: @theia/editor +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/multer +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/rimraf +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/tar-fs +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/uuid +2022-05-23 08:27:04 root WARN Failed to resolve module: @theia/navigator +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/p-queue +2022-05-23 08:27:04 root WARN Failed to resolve module: @theia/preferences +2022-05-23 08:27:04 root WARN Failed to resolve module: @theia/editor-preview +2022-05-23 08:27:04 root WARN Failed to resolve module: @theia/keymaps +2022-05-23 08:27:04 root WARN Failed to resolve module: @theia/messages +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/diff +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/mime +2022-05-23 08:27:04 root WARN Failed to resolve module: filenamify +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/request +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/atob +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/auth0-js +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/btoa +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/dateformat +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/deepmerge +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/glob +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/google-protobuf +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/js-yaml +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/keytar +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/ncp +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/node-fetch +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/ps-tree +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/react-select +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/react-tabs +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/temp +2022-05-23 08:27:04 root WARN Failed to resolve module: @types/which +2022-05-23 08:27:04 root INFO Updating index: package_index.json completed. +2022-05-23 08:27:04 root WARN Frontend keybindings.onStart is slow, took: 299.2 ms +2022-05-23 08:27:04 root INFO Updating index: package_index.json.sig completed. +2022-05-23 08:27:04 daemon INFO Checking signature [error: opening signature file: open /tmp/081664279.sig: no such file or directory, index: /tmp/081664279, signaturefile: /tmp/081664279.sig] +2022-05-23 08:27:04 daemon INFO URL: https://raw.githubusercontent.com/dbuezas/lgt8fx/master/package_lgt8fx_index.json +2022-05-23 08:27:04 daemon INFO Updating index [url: https://raw.githubusercontent.com/dbuezas/lgt8fx/master/package_lgt8fx_index.json] +2022-05-23 08:27:04 root INFO Updating index: package_lgt8fx_index.json completed. +2022-05-23 08:27:04 daemon INFO Checking signature [error: opening signature file: open /tmp/707436385.sig: no such file or directory, index: /tmp/707436385, signaturefile: /tmp/707436385.sig] +2022-05-23 08:27:04 daemon INFO Updating libraries index +2022-05-23 08:27:05 root INFO Updating index: library_index.json.gz completed. +2022-05-23 08:27:05 root INFO Updating index: library_index.json.sig completed. +2022-05-23 08:27:05 root ERROR d.registerSchemas is taking more than 500.0 ms, new schemas are ignored. +2022-05-23 08:27:05 daemon INFO Checking signature [index: /home/ide2/.arduino15/package_index.json, signaturefile: /home/ide2/.arduino15/package_index.json.sig, trusted: true] +2022-05-23 08:27:05 daemon INFO Checking signature [error: opening signature file: open /home/ide2/.arduino15/package_lgt8fx_index.json.sig: no such file or directory, index: /home/ide2/.arduino15/package_lgt8fx_index.json, signaturefile: /home/ide2/.arduino15/package_lgt8fx_index.json.sig] +2022-05-23 08:27:05 daemon INFO Loading hardware from: /home/ide2/.arduino15/packages +2022-05-23 08:27:05 daemon INFO Loading package LGT8fx Boards from: /home/ide2/.arduino15/packages/LGT8fx Boards/hardware +2022-05-23 08:27:05 daemon INFO Checking signature [error: opening signature file: open /home/ide2/.arduino15/packages/LGT8fx Boards/hardware/avr/1.0.6/installed.json.sig: no such file or directory, index: /home/ide2/.arduino15/packages/LGT8fx Boards/hardware/avr/1.0.6/installed.json, signaturefile: /home/ide2/.arduino15/packages/LGT8fx Boards/hardware/avr/1.0.6/installed.json.sig] +2022-05-23 08:27:06 daemon INFO Adding monitor tool [protocol: serial, tool: builtin:serial-monitor] +2022-05-23 08:27:06 daemon INFO Loaded platform [platform: {ID:"LGT8fx Boards:avr",Installed:"1.0.6",Latest:"1.0.6",Name:"LGT8fx Boards"}] +2022-05-23 08:27:06 daemon INFO Loading package arduino from: /home/ide2/.arduino15/packages/arduino/hardware +2022-05-23 08:27:06 daemon INFO Checking signature [error: opening signature file: open /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/installed.json.sig: no such file or directory, index: /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/installed.json, signaturefile: /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/installed.json.sig] +2022-05-23 08:27:06 daemon INFO Adding monitor tool [protocol: serial, tool: builtin:serial-monitor] +2022-05-23 08:27:06 daemon INFO Loaded platform [platform: {ID:"arduino:avr",Installed:"1.8.5",Latest:"1.8.5",Name:"Arduino AVR Boards"}] +2022-05-23 08:27:06 daemon INFO Checking existence of 'tools' path: /home/ide2/.arduino15/packages/arduino/tools +2022-05-23 08:27:06 daemon INFO Loading tools from dir: /home/ide2/.arduino15/packages/arduino/tools +2022-05-23 08:27:06 daemon INFO Loaded tool [tool: Version: 1.3.0 Systems: [OS: i686-linux-gnu, OS: x86_64-linux-gnu, OS: arm-linux-gnueabihf, OS: aarch64-linux-gnu, OS: i386-apple-darwin11, OS: i686-mingw32]] +2022-05-23 08:27:06 daemon INFO Loaded tool [tool: Version: 7.3.0-atmel3.6.1-arduino7 Systems: [OS: arm-linux-gnueabihf, OS: aarch64-linux-gnu, OS: x86_64-apple-darwin14, OS: i686-mingw32, OS: i686-linux-gnu, OS: x86_64-linux-gnu]] +2022-05-23 08:27:06 daemon INFO Loaded tool [tool: Version: 6.3.0-arduino17 Systems: [OS: arm-linux-gnueabihf, OS: aarch64-linux-gnu, OS: x86_64-apple-darwin12, OS: x86_64-linux-gnu, OS: i686-linux-gnu, OS: i686-mingw32]] +2022-05-23 08:27:06 daemon INFO Loading package builtin from: /home/ide2/.arduino15/packages/builtin +2022-05-23 08:27:06 daemon INFO Checking existence of 'tools' path: /home/ide2/.arduino15/packages/builtin/tools +2022-05-23 08:27:06 daemon INFO Loading tools from dir: /home/ide2/.arduino15/packages/builtin/tools +2022-05-23 08:27:06 daemon INFO Loaded tool [tool: Version: 5.8-arduino11 Systems: [OS: i686-pc-linux-gnu, OS: x86_64-pc-linux-gnu, OS: i686-mingw32, OS: x86_64-apple-darwin, OS: arm-linux-gnueabihf, OS: aarch64-linux-gnu]] +2022-05-23 08:27:06 daemon INFO Loaded tool [tool: Version: 1.0.5 Systems: [OS: i686-pc-linux-gnu, OS: x86_64-pc-linux-gnu, OS: i686-mingw32, OS: x86_64-mingw32, OS: x86_64-apple-darwin, OS: arm-linux-gnueabihf, OS: arm64-linux-gnueabihf]] +2022-05-23 08:27:06 daemon INFO Loaded tool [tool: Version: 1.2.1] +2022-05-23 08:27:06 daemon INFO Loaded tool [tool: Version: 1.3.2 Systems: [OS: i686-pc-linux-gnu, OS: x86_64-pc-linux-gnu, OS: i686-mingw32, OS: x86_64-mingw32, OS: x86_64-apple-darwin, OS: arm-linux-gnueabihf, OS: arm64-linux-gnueabihf]] +2022-05-23 08:27:06 daemon INFO Loaded tool [tool: Version: 0.9.1 Systems: [OS: i686-pc-linux-gnu, OS: x86_64-pc-linux-gnu, OS: i686-mingw32, OS: x86_64-mingw32, OS: x86_64-apple-darwin, OS: arm-linux-gnueabihf, OS: arm64-linux-gnueabihf]] +2022-05-23 08:27:06 daemon INFO Adding libraries dir [dir: /home/ide2/.arduino15/packages/LGT8fx Boards/hardware/avr/1.0.6/libraries, location: platform] +2022-05-23 08:27:06 daemon INFO Adding libraries dir [dir: /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/libraries, location: platform] +2022-05-23 08:27:06 daemon INFO starting discovery builtin:serial-discovery process +2022-05-23 08:27:06 daemon INFO starting discovery builtin:mdns-discovery process +2022-05-23 08:27:06 daemon INFO started discovery builtin:serial-discovery process +2022-05-23 08:27:06 daemon INFO sending command HELLO 1 "arduino-cli 0.21.0" to discovery builtin:serial-discovery +2022-05-23 08:27:06 daemon INFO started discovery builtin:mdns-discovery process +2022-05-23 08:27:06 daemon INFO sending command HELLO 1 "arduino-cli 0.21.0" to discovery builtin:mdns-discovery +2022-05-23 08:27:06 daemon INFO from discovery builtin:serial-discovery received message type: hello, message: OK, protocol version: 1 +2022-05-23 08:27:06 daemon INFO from discovery builtin:mdns-discovery received message type: hello, message: OK, protocol version: 1 +2022-05-23 08:27:06 daemon INFO sending command START_SYNC to discovery builtin:serial-discovery +2022-05-23 08:27:06 daemon INFO sending command START_SYNC to discovery builtin:mdns-discovery +2022-05-23 08:27:06 daemon INFO from discovery builtin:mdns-discovery received message type: start_sync, message: OK +2022-05-23 08:27:06 daemon INFO from discovery builtin:serial-discovery received message type: start_sync, message: OK +2022-05-23 08:27:06 daemon INFO from discovery builtin:serial-discovery received message type: add, port: /dev/ttyS0 +2022-05-23 08:27:06 root WARN Frontend i.onStart is slow, took: 2063.7 ms +2022-05-23 08:27:06 root INFO Board config changed: +2022-05-23 08:27:06 root INFO Board config changed: +2022-05-23 08:27:06 root INFO Changed application state from 'init' to 'started_contributions'. +2022-05-23 08:27:06 root INFO Changed application state from 'started_contributions' to 'attached_shell'. +2022-05-23 08:27:06 root INFO >>> Restoring the layout state... +2022-05-23 08:27:06 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f] Waiting for backend deployment took: 292.3 ms [Finished 4.583 s after frontend start] +2022-05-23 08:27:06 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796) starting instance +2022-05-23 08:27:07 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f] Sync of 11 plugins took: 527.2 ms [Finished 5.111 s after frontend start] +2022-05-23 08:27:08 root INFO <<< The layout has been successfully restored. +2022-05-23 08:27:08 root INFO Changed application state from 'attached_shell' to 'initialized_layout'. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][marus25.cortex-debug]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][arduino.vscode-arduino-tools]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][vscode.cpp]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][vscode.json]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][vscode.json-language-features]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-de]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-fr]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-ja]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-nl]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-tr]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-zh-hans]: Loaded contributions. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f] Load contributions of 11 plugins took: 121.9 ms [Finished 6.190 s after frontend start] +2022-05-23 08:27:08 root WARN Frontend u.onDidInitializeLayout is slow, took: 122.9 ms +2022-05-23 08:27:08 root INFO Finished loading frontend application after 6.218 seconds +2022-05-23 08:27:08 root WARN 'cpp' language is remapped from 'source.cpp.embedded.macro' to 'source.cpp' scope +2022-05-23 08:27:08 root WARN a registered grammar configuration for 'cpp' language is overridden +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): PluginManagerExtImpl/init() +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(cortex-debug@0.3.10 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] Debugger contribution has been registered: cortex-debug +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(vscode-arduino-tools@0.0.2-beta.2 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(cpp@1.52.1 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(json@1.46.1 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(json-language-features@1.46.1 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(vscode-language-pack-de@1.53.2 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(vscode-language-pack-fr@1.53.2 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(vscode-language-pack-ja@1.53.2 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(vscode-language-pack-nl@1.48.3 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(vscode-language-pack-tr@1.53.2 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): initializing(vscode-language-pack-zh-hans@1.53.2 with /tmp/.mount_arduin9VwhZQ/resources/app/node_modules/@theia/plugin-ext-vscode/lib/node/plugin-vscode-init) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): PluginManagerExtImpl/loadPlugin(/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-builtin-json-language-features/extension/client/dist/jsonMain) +2022-05-23 08:27:08 root INFO [hosted-plugin: 17796] PLUGIN_HOST(17796): PluginManagerExtImpl/loadPlugin(/tmp/.mount_arduin9VwhZQ/resources/app/plugins/vscode-arduino-tools/extension/dist/bundle) +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][marus25.cortex-debug]: Started plugin. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][arduino.vscode-arduino-tools]: Started plugin. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][vscode.cpp]: Started plugin. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][vscode.json]: Started plugin. +2022-05-23 08:27:08 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][vscode.json-language-features]: Started plugin. +2022-05-23 08:27:09 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-de]: Started plugin. +2022-05-23 08:27:09 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-fr]: Started plugin. +2022-05-23 08:27:09 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-ja]: Started plugin. +2022-05-23 08:27:09 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-nl]: Started plugin. +2022-05-23 08:27:09 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-tr]: Started plugin. +2022-05-23 08:27:09 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f][ms-ceintl.vscode-language-pack-zh-hans]: Started plugin. +2022-05-23 08:27:09 root INFO [c51197ad-6b56-4b7b-9bc2-4bdbc201ae9f] Start of 11 plugins took: 597.4 ms [Finished 6.796 s after frontend start] +2022-05-23 08:27:09 root INFO Starting language server: arduino:avr:uno +2022-05-23 08:27:09 root INFO Changed application state from 'initialized_layout' to 'ready'. +2022-05-23 08:27:09 daemon INFO inventory.Store.ConfigFileUsed() /home/ide2/.arduino15/inventory.yaml +2022-05-23 08:27:09 daemon INFO inventory.Store.ConfigFileUsed() /home/ide2/.arduino15/inventory.yaml +2022-05-23 08:27:09 daemon INFO Searching tools required for board arduino:avr:uno +2022-05-23 08:27:09 daemon INFO Required tool [tool: {ToolName:"arduinoOTA",ToolVersion:"1.3.0",ToolPackager:"arduino"}] +2022-05-23 08:27:09 daemon INFO Required tool [tool: {ToolName:"avr-gcc",ToolVersion:"7.3.0-atmel3.6.1-arduino7",ToolPackager:"arduino"}] +2022-05-23 08:27:09 daemon INFO Required tool [tool: {ToolName:"avrdude",ToolVersion:"6.3.0-arduino17",ToolPackager:"arduino"}] +2022-05-23 08:27:09 daemon INFO Adding libraries dir [dir: /home/art/Downloads/arduino-1.8.10/libraries, location: ide] +2022-05-23 08:27:09 daemon INFO Adding libraries dir [dir: /home/ide2/.arduino15/packages/arduino/hardware/avr/1.8.5/libraries, location: platform] +2022-05-23 08:27:09 daemon INFO Adding libraries dir [dir: /home/ide2/Arduino/libraries, location: user] +2022-05-23 08:27:12 serial-service INFO >>> Disposing serial service... +2022-05-23 08:27:12 serial-service INFO <<< Disposed serial service. From 79a1761963a7f28d03794d7cbab424b2b128cbee Mon Sep 17 00:00:00 2001 From: ArduinoShop <72320885+ArduinoShop@users.noreply.github.com> Date: Mon, 23 May 2022 08:57:37 -0600 Subject: [PATCH 3/5] UpDated the Instruction file. "Launcher" file update --- AppImage Launcher/Launcher | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/AppImage Launcher/Launcher b/AppImage Launcher/Launcher index 4623ab49c..23a59ce5a 100644 --- a/AppImage Launcher/Launcher +++ b/AppImage Launcher/Launcher @@ -1,7 +1,10 @@ -The "newest" nightly buildss of the IDE 2.0 use the AppImage (fltpak) file format. You should be able to double click on the ".AppImage" from the File Manager and get the IDE up and running. +The "newest" nightly buildss of the IDE 2.0 use the AppImage (fltpak) file format. You should be able to double click on the ".AppImage" from the File Manager and get the IDE up and running. Assuming the "undefined" directory is in the same directory as the "AppImage" file. For quite some time now I have been a part of the Arduino team but only working on the Linux Launcher. I submitted some scripts quite some time ago but they are out of date. I am includeing the updated scripts which are much more useful. The idea is to create proper ".desktop" files so that you can launch the IDE from the Gnome dock. There are actually 2 versions of the ".desktop" file supporting a local user only mode or a systemwide mode. This way you could have a "stable" release available to all users on the Linux system and a separate "nightly" version for a development user. I am not a "git" expert and do not remember how to update ( or is it merge? ) the files originally sent to Arduino. So I am posting them here. + +Just add the ".png", the ".sh" and the ".template" files to the directory where the Arduino ".AppImage" file is located. If there is no sub directory named "undefined" you will need to download and install the "undefined" directory provided here. It is required by the IDE for logging purposes. The run the ".sh" script. You will need to open a terminal session ( right-click in the directory from the File Manager and select "Open in Terminal" ) the execute ./Linux_Install.sh. ( You may need to make it executable by running chmod +x Linux_Install.sh ) and follow instructions. + From add73c73ef284634a03be16e7756fde3d01c2083 Mon Sep 17 00:00:00 2001 From: ArduinoShop <72320885+ArduinoShop@users.noreply.github.com> Date: Mon, 23 May 2022 09:02:32 -0600 Subject: [PATCH 4/5] Added ReadMe ReadMe added for instructions --- AppImage Launcher/ReadMe | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 AppImage Launcher/ReadMe diff --git a/AppImage Launcher/ReadMe b/AppImage Launcher/ReadMe new file mode 100644 index 000000000..23a59ce5a --- /dev/null +++ b/AppImage Launcher/ReadMe @@ -0,0 +1,10 @@ +The "newest" nightly buildss of the IDE 2.0 use the AppImage (fltpak) file format. You should be able to double click on the ".AppImage" from the File Manager and get the IDE up and running. Assuming the "undefined" directory is in the same directory as the "AppImage" file. + +For quite some time now I have been a part of the Arduino team but only working on the Linux Launcher. + +I submitted some scripts quite some time ago but they are out of date. I am includeing the updated scripts which are much more useful. The idea is to create proper ".desktop" files so that you can launch the IDE from the Gnome dock. There are actually 2 versions of the ".desktop" file supporting a local user only mode or a systemwide mode. This way you could have a "stable" release available to all users on the Linux system and a separate "nightly" version for a development user. + +I am not a "git" expert and do not remember how to update ( or is it merge? ) the files originally sent to Arduino. So I am posting them here. + +Just add the ".png", the ".sh" and the ".template" files to the directory where the Arduino ".AppImage" file is located. If there is no sub directory named "undefined" you will need to download and install the "undefined" directory provided here. It is required by the IDE for logging purposes. The run the ".sh" script. You will need to open a terminal session ( right-click in the directory from the File Manager and select "Open in Terminal" ) the execute ./Linux_Install.sh. ( You may need to make it executable by running chmod +x Linux_Install.sh ) and follow instructions. + From ad66081e3eabbd3c3940e503c9fd756d54019bc3 Mon Sep 17 00:00:00 2001 From: ArduinoShop <72320885+ArduinoShop@users.noreply.github.com> Date: Mon, 23 May 2022 09:03:36 -0600 Subject: [PATCH 5/5] Delete Launcher --- AppImage Launcher/Launcher | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 AppImage Launcher/Launcher diff --git a/AppImage Launcher/Launcher b/AppImage Launcher/Launcher deleted file mode 100644 index 23a59ce5a..000000000 --- a/AppImage Launcher/Launcher +++ /dev/null @@ -1,10 +0,0 @@ -The "newest" nightly buildss of the IDE 2.0 use the AppImage (fltpak) file format. You should be able to double click on the ".AppImage" from the File Manager and get the IDE up and running. Assuming the "undefined" directory is in the same directory as the "AppImage" file. - -For quite some time now I have been a part of the Arduino team but only working on the Linux Launcher. - -I submitted some scripts quite some time ago but they are out of date. I am includeing the updated scripts which are much more useful. The idea is to create proper ".desktop" files so that you can launch the IDE from the Gnome dock. There are actually 2 versions of the ".desktop" file supporting a local user only mode or a systemwide mode. This way you could have a "stable" release available to all users on the Linux system and a separate "nightly" version for a development user. - -I am not a "git" expert and do not remember how to update ( or is it merge? ) the files originally sent to Arduino. So I am posting them here. - -Just add the ".png", the ".sh" and the ".template" files to the directory where the Arduino ".AppImage" file is located. If there is no sub directory named "undefined" you will need to download and install the "undefined" directory provided here. It is required by the IDE for logging purposes. The run the ".sh" script. You will need to open a terminal session ( right-click in the directory from the File Manager and select "Open in Terminal" ) the execute ./Linux_Install.sh. ( You may need to make it executable by running chmod +x Linux_Install.sh ) and follow instructions. -