Changes between Version 33 and Version 34 of Other/Summer/2023/SelfDriving


Ignore:
Timestamp:
Aug 2, 2023, 3:50:05 PM (9 months ago)
Author:
tochu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Other/Summer/2023/SelfDriving

    v33 v34  
    212212
    213213
    214 6. Use **arduino-cli board** list command to find the port of the Teensy
     2146. Use **arduino-cli board list** command to find the port of the Teensy
    215215
    216216-> Modify the sketch.yaml file in the ./teensy directory to makes sure default_port and default_fqbn matches what is listed from **arduino-cli board list**
     
    254254
    2552552. Open a web brower and go to {ip}:5000 to view
     256
     257===== Troubleshooting =====
     258
     2591. "SerialException: Device reports readiness to read but returned no data"
     260
     261ROS will not be able to communicate with serial if there is another service using the port, i.e. Serial Monitor
     262
     263- Use lsof to check with programs are using the port `lsof /dev/ttyACM0`
     264- Kill the program that is using the port `kill {PID}`
     265
     2662. "socket.error: [Errno 48] Address already in use"
     267
     268Flask server was not properly stopped before starting it again
     269
     270 - Close the connection `sudo fuser -k 5000/tcp`
     271
     272 - [https://stackoverflow.com/questions/34457981/trying-to-run-flask-app-gives-address-already-in-use More Info]