Files

copied

Scanning the repository...

Last update 6 years 1 month by DJ
Filesnu.ai_motor_controller_firmware
..
Makefile
README.txt
firmware_design_document.odt
flash.sh
nu.ai_motor_controller_firmware.c
reset.py
reset.py
#!/usr/bin/env python import serial, sys serialPort = sys.argv[1] ser = serial.Serial( port=serialPort, baudrate=1200, parity=serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, bytesize=serial.EIGHTBITS ) ser.isOpen() ser.close() # always close port
Report a bug