Hello,
Is it possible to communicate with the TM4C1294 from Python?
I'm able to do the basic communication using this code:
import serial
import serial.tools.list_ports
ports = list(serial.tools.list_ports.comports())
for p in ports:
print(p)
ser = serial.Serial('COM6') # open first serial port
print (ser.portstr)
ser.write(b"hello")
ser.close()
And I get the following output:
COM6 - Stellaris Virtual Serial Port (COM6)
COM6
But, I'd like to replicate the examples from CCS, like the LED Blink code etc. It's all in C++, it works, but I'd like to use Python instead. Is that possible? Does TI have TIVA libraries in Python?