Thanks for your reply and I am well aware of how to use the search function, however:
None of those threads are featuring the same issue I am featuring
None of those threads feature an actual solution to a wireless card issue that I am having
The card is activated and is able to connect to wireless networks, sometimes, but not always because of the issue listed. This is why I am asking for suggestions to go away from intel.
As for your error, we just resolved some issue on TX2+ ac8265. Please try to add this patch.
This would set w-disable1 line active high for PCIe M.2 connector
We are using a python module that works with nmcli, it disconnects the wifi and connects to a different wifi. Every time it tries to connect to a network, the error appears.
def loop_cameras(self, action="start"):
"""Called to complete an action"""
current0 = 0
startTime = 0
endTime = 0
for cam in self.cameras:
# For each camera
print()
print("WIRELESS: Connecting to: " + cam)
tries0 = 0
# While we are not connected to the camera
while self.wireless.current() != self.cameras[cam]['name']:
# Has five tries before we quit
if tries0 < 5:
try:
# Connecting to camera's access point
<b>self.wireless.connect(ssid=self.cameras[cam]['name'], password=self.cameras[cam]['password'])</b>
# Successfully connected to camera
gpCam = GoProCamera.GoPro() # Connected to camera
## MORE CODE BELOW
...
This function is called and is the function that connects to the wifi. The bolded part specifically. When the bolded section happens, the error above occurs.
I just tried with normal setup which does not use your python code. But cannot reproduce your issue.
Could we try to narrow down the cause by using the Ubuntu GUI to set up wifi at this moment?
Are you able to see this issue with this simple setup?
Also, your python code seems not help because it does not provide the real commands that connect to wifi.
It uses wireless, which is an abandoned python module, but still works without an issue. I have run the script on multi-user.target, and the issue persists.