Skip to content

Commit fea12ae

Browse files
committed
added vim to docker
1 parent 82a66aa commit fea12ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

car.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ VOLUME ["/foocars/cars/chiaracer"]
2222
FROM base AS carservices
2323

2424
RUN apt update && apt install -y \
25-
gcc libhdf5-dev
25+
gcc libhdf5-dev vim
2626

2727
RUN pip install h5py
2828

cars/carservices/carservices/carRunner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def autonomous(mode):
247247
callback_switch_autonomous.is_auto = True
248248
GPIO.output(LED_names["autonomous"], GPIO.HIGH)
249249
else: # autonomous off
250-
print("Autonomous: Off")
250+
print("Autonomous: Off")
251251
logging.debug('\n user toggled autonomous off {0}\n'.format(datetime.datetime.now().strftime(time_format)))
252252
if not g_stop_event.isSet(): #if the event isn't already set, then stop autonomous is triggered by the switch
253253
g_stop_event.set() #stop autonomous thread

cars/carservices/carservices/defines.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"collect_data" : 11,
1515
}
1616

17-
# Modes: manual, auto, remote
17+
# Modes: manual, auto, remote web or alt
1818
MODE = "manual"
1919

2020
# Camera settings

0 commit comments

Comments
 (0)