Announcement
Collapse
No announcement yet.
Strange network/WiFi issue
Collapse
X
-
Sent from my Pixel 3a using TapatalkLiving Room: Touch or Squeezelite (Pi3B) > Topping E30 > Audiolab 8000A > Monitor Audio S5 + BK200-XLS DF
Bedroom: Radio
Bathroom: RadioComment
-
Upload the attached patch file to your Radio, into the root user's home directory. Name it icon.patch
Then save the existing QVGAbaseSkinApplet.lua script, e.g. to QVGAbaseSkinApplet.lua.original, and apply the patch. Then check your work, and restart the Radio. You can restore the saved version back if things go wrong.
Here's a screen dump of the process as I undertook it:
Code:# cd /usr/share/jive/applets/QVGAbaseSkin # cp -p QVGAbaseSkinApplet.lua QVGAbaseSkinApplet.lua.original # patch <~/icon.patch [color=blue]Check your handiwork:[/color] # diff -u QVGAbaseSkinApplet.lua.original QVGAbaseSkinApplet.lua --- QVGAbaseSkinApplet.lua.original +++ QVGAbaseSkinApplet.lua @@ -2385,10 +2385,10 @@ img = _loadImage(self, "Icons/icon_wireless_disabled.png"), }) s.button_wireless_SERVERERROR = _uses(s._button_wireless, { - img = _loadImage(self, "Icons/icon_wireless_disabled.png"), + --img = _loadImage(self, "Icons/icon_wireless_disabled.png"), -- In 7.6, decision is to go with only red colored icons for both network and server errors -- leaving the old path here in case we decide that was a mistake - --img = _loadImage(self, "Icons/icon_wireless_cantconnect.png"), + img = _loadImage(self, "Icons/icon_wireless_cantconnect.png"), }) s.button_wireless_NONE = _uses(s._button_wireless, { img = false, @@ -2401,10 +2401,10 @@ img = _loadImage(self, "Icons/icon_ethernet_disabled.png"), }) s.button_ethernet_SERVERERROR = _uses(s._button_wireless, { - img = _loadImage(self, "Icons/icon_ethernet_disabled.png"), + --img = _loadImage(self, "Icons/icon_ethernet_disabled.png"), -- In 7.6, decision is to go with only red colored icons for both network and server errors -- leaving the old path here in case we decide that was a mistake - -- img = _loadImage(self, "Icons/icon_ethernet_cantconnect.png"), + img = _loadImage(self, "Icons/icon_ethernet_cantconnect.png"), }) -- time
Attached FilesComment
-
The error seems to be a red herring. If I close the error message I can see the file system. Enabling debug for net.http is extremely verbose. I am not sure if it is worth spending too much time investigating this. It is a minor annoyance and probably has always been there.
The issue seems like a minor but annoying niggle & difficult to identify. If it is battery associated - yet another potential level of complexity, I have no idea of what special measures are taken with the battery.Comment
Comment