Script Halting

Hi,

I am running BBB Rev C (element 14).

I have been noticing that after a couple of hours my python script is halting. I have been only running a very simple LED blink script. After a while the LED is either static ON or OFF. I first noticed that script was halting when implementing a flask webserver, so I took it back to basics and tested with LED code.

#!/usr/bin/python

import Adafruit_BBIO.GPIO as GPIO
import time

GPIO.setup(“P8_12”, GPIO.OUT)

while True:
GPIO.output(“P8_12”, GPIO.HIGH)
time.sleep(1)
GPIO.output(“P8_12”, GPIO.LOW)
time.sleep(1)

I am new to BBB and Python, so any debugging or logging/trace ideas to get to the bottom of this are welcomed.

Thanks,
TPM