Legal Removal Request This form is for reporting content posted on the AB Electronics UK forums that you believe violates your personal legal rights or applicable local laws for your country. Post: I am developing on ArchLinuxArm, using Python 3.I have arranged my code such that all I/O to the expansion boards is only performed in one thread (except, possibly, the RTC, which is handled by the OS.I am experiencing a problem that the I/O thread crashes fairly often (sometimes within minutes of starting but at other times it will run for several hours) with the following traceback:[root@automate ~]# Main.pyException in thread Inputs.Inputs:Traceback (most recent call last): File "/usr/lib/python3.5/threading.py", line 914, in _bootstrap_inner self.run() File "/usr/lib/python3.5/threading.py", line 862, in run self._target(*self._args, **self._kwargs) File "/root/Inputs.py", line 23, in Inputs analogn.sense() File "/root/Analogs.py", line 21, in sense self.values.append(adc.readADCraw(self.channel)) File "/root/ABElectronics_Python3_Libraries/ExpanderPi/ABE_ExpanderPi.py", line 61, in readADCraw r = self.__spiADC.xfer2([4 + (channel >> 2), (channel & 3) << 6, 0])OSError: [Errno 22] Invalid argument If I insert a print statement into my code, the problem appears to go away - the system will run reliably for more than a day.The analogue inputs are being scanned once a second with this code:# Analogs# 2016-05-08 21:46from ExpanderPi.ABE_ExpanderPi import ADCadc=ADC()class Analog: def __init__(self, pi, channel, avcnt): from Initialise import analogs self.channel=channel self.values=[] self.avcnt=avcnt analogs.append(self) self.value=0.0 def sense(self):# print(self.channel,self.avcnt,self.values) if(len(self.values) >= self.avcnt): self.values.pop(0) self.values.append(adc.readADCraw(self.channel)) self.value=sum(self.values)/len(self.values) def read(self): return self.value I have no problem with the digital inputs, which are being scanned ten times a second. Can anyone offer any advice or explanation for this problem? Select the country where you are claiming legal rights. Albania Algeria American Samoa Andorra Angola Anguilla Antarctica Antigua and Barbuda Argentina Aruba Australia Austria Bahamas Bahrain Bangladesh Barbados Belarus Belgium Belize Benin Bermuda Bhutan Bolivia Bosnia And Herzegovina Botswana Bouvet Island Brazil British Indian Ocean Territory British Virgin Islands Brunei Bulgaria Burkina Faso Burundi Cambodia Cameroon Canada Canary Islands Cape Verde Cayman Islands Central African Republic Chad Channel Islands Chile Christmas Island Cocos (Keeling) Islands Colombia Comoros Congo Cook Islands Costa Rica Croatia Cuba Cyprus Czech Republic Denmark Djibouti Dominica Dominican Republic East Timor Ecuador Egypt El Salvador Equatorial Guinea Estonia Ethiopia Falkland Islands (Malvinas) Faroe Islands Federated States of Micronesia Fiji Finland France French Guiana French Polynesia French Southern Territories Gabon Gambia Georgia Germany Ghana Gibraltar Greece Greenland Grenada Guadeloupe Guam Guatemala Guyana Haiti Heard Island and McDonald Islands Honduras Hong Kong Hungary Iceland India Indonesia Ireland Israel Italy Jamaica Japan Jordan Kazakhstan Kenya Kiribati Kuwait Kyrgyzstan Laos Latvia Lesotho Liechtenstein Lithuania Luxembourg Macau Macedonia Madagascar Malawi Malaysia Maldives Mali Malta Marshall Islands Martinique Mauritania Mauritius Mayotte Mexico Micronesia, Federated States Of Moldova, Republic Of Monaco Mongolia Montenegro Montserrat Morocco Mozambique Myanmar Namibia Nauru Nepal Netherlands Netherlands Antilles New Caledonia New Zealand Nicaragua Niue Norfolk Island Northern Mariana Islands Norway Oman Palau Panama Papua New Guinea Paraguay Peru Philippines Pitcairn Poland Portugal Puerto Rico Qatar Reunion Romania Russia Rwanda Samoa San Marino Sao Tome and Principe Saudi Arabia Serbia Seychelles Singapore Slovakia Slovenia Solomon Islands South Africa South Georgia and the South Sandwich Islands South Korea Spain Sri Lanka St. Helena St. Kitts and Nevis St. Lucia St. Pierre and Miquelon St. Vincent and the Grenadines Suriname Svalbard and Jan Mayen Islands Swaziland Sweden Switzerland Syria Taiwan Tajikistan Tanzania Thailand Togo Tokelau Tonga Trinidad and Tobago Tunisia Turkey Turkmenistan Turks and Caicos Islands Tuvalu U.S. Virgin Islands Uganda Ukraine United Arab Emirates United Kingdom United States United States Minor Outlying Islands Uruguay Uzbekistan Vanuatu Vatican City Venezuela Vietnam Wallis and Futuna Islands Western Sahara Yemen Yugoslavia Zambia What legal issue or problem do you wish to report? Please select Privacy / Erasure under GDPR Defamation Intellectual Property Hate Speech Other Please enter the following information so we can process your report. Contact Name: Contact Email: Details of complaint: Submit Complaint