This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.3.0 to fix issue with slow browsers or network
### Releases v1.3.0 1. Fix issue with slow browsers or network. Check [Target stops responding after variable time when using Firefox on Windows 10 #3](khoih-prog/AsyncWebServer_RP2040W#3)
- Loading branch information
1 parent
3e8e14a
commit 8297aa2
Showing
29 changed files
with
959 additions
and
328 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
Packages_Patches/arduino/hardware/mbed_portenta/3.3.0/portenta_post_install.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
portenta_h7_rules () { | ||
echo "" | ||
echo "# Portenta H7 bootloader mode UDEV rules" | ||
echo "" | ||
cat <<EOF | ||
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2341", ATTRS{idProduct}=="035b", GROUP="plugdev", MODE="0666" | ||
EOF | ||
} | ||
|
||
if [ "$EUID" -ne 0 ] | ||
then echo "Please run as root" | ||
exit | ||
fi | ||
|
||
portenta_h7_rules > /etc/udev/rules.d/49-portenta_h7.rules | ||
|
||
# reload udev rules | ||
echo "Reload rules..." | ||
udevadm trigger | ||
udevadm control --reload-rules |
Oops, something went wrong.