Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Commit

Permalink
nuge-requires settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jc01rho committed Aug 8, 2023
1 parent b403ab9 commit a42db2e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@


# For foreign users (non Korean.)
#### working tested : BoltEV premier 2017, 2018, 2019, 2020
#### working tested : BoltEV premier 2017, 2018, 2019, 2020 (also works if using imperal units)
thx for @andyroo-t that BoltEV premier 2020 tests

### 2023-08-09 (release/develop)
- settings->ETC->EnableMainCruiseOnOff is added. and this is highly recommended to ON.
- please turn this on if you read first time.
- (you can enable/disable cruise control by pressing the "SET" button on the steering wheel.)

### 2023-07-18 (release/develop)
- feature-develop branch is synced with latest feature/opgm-ap-integration
- base fork chaged to Apilot
- engaging method has changed.
- now, you can engage by pressing the "SET" button on the steering wheel.
- now, you can engage by pressing the "SET" button on the steering wheel.
- full clean wipe & factory reset the device when you read this first time.
### 2022-12-21 (v0819-c3)
- full clean wipe & factory reset the device when you read this first time.
Expand Down
2 changes: 1 addition & 1 deletion selfdrive/controls/lib/desire_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def update(self, carstate, lateral_active, lane_change_prob, md, turn_prob, navI
elif roadedge_detected:
self.desireEvent = EventName.laneChangeRoadEdge
else:
if leftBlinker and v_ego_kph < self.autoLaneChangeSpeed: # 저속에 좌측차로변경 토크필요
if leftBlinker and ( v_ego_kph < self.autoLaneChangeSpeed or self.autoLaneChangeSpeed < 1 ) : # 저속에 좌측차로변경 토크필요
need_torque = 2
self.lane_change_state = LaneChangeState.laneChangeStarting
else: # 네비..
Expand Down

0 comments on commit a42db2e

Please sign in to comment.