Files
-
nu.ai_motor_controller / battery.sch
-
nu.ai_motor_controller / driver.sch
-
nu.ai_motor_controller / microcontroller.sch
-
nu.ai_motor_controller / nu.ai_motor_controller.kicad_pcb
-
nu.ai_motor_controller / nu.ai_motor_controller.sch
-
nu.ai_motor_controller / power.sch
-
nu.ai_motor_controller / uc_tvs_tps.sch
Last update 5 years 6 months
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