Skip to content

Commit

Permalink
Merge branch 'devel' into corolla
Browse files Browse the repository at this point in the history
  • Loading branch information
wocsor committed Feb 7, 2019
2 parents 57c15f6 + 421a6b0 commit e9b434b
Show file tree
Hide file tree
Showing 23 changed files with 12 additions and 41 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Supported Cars
| Chevrolet<sup>3</sup>| Malibu 2017 | Adaptive Cruise | Yes | Yes | 0mph | 7mph | Custom<sup>7</sup>|
| Chevrolet<sup>3</sup>| Volt 2017-18 | Adaptive Cruise | Yes | Yes | 0mph | 7mph | Custom<sup>7</sup>|
| Cadillac<sup>3</sup> | ATS 2018 | Adaptive Cruise | Yes | Yes | 0mph | 7mph | Custom<sup>7</sup>|
| Chrysler | Pacifica Hybrid 2017 | Adaptive Cruise | Yes | Stock | 0mph | 9mph | Custom<sup>8</sup>|
| Chrysler | Pacifica Hybrid 2017 | Adaptive Cruise | Yes | Stock | 0mph | 9mph | FCA |
| GMC<sup>3</sup> | Acadia Denali 2018 | Adaptive Cruise | Yes | Yes | 0mph | 7mph | Custom<sup>7</sup>|
| Holden<sup>3</sup> | Astra 2017 | Adaptive Cruise | Yes | Yes | 0mph | 7mph | Custom<sup>7</sup>|
| Honda | Accord 2018 | All | Yes | Stock | 0mph | 3mph | Bosch |
Expand Down Expand Up @@ -103,7 +103,6 @@ Supported Cars
<sup>5</sup>28mph for Camry 4CYL L, 4CYL LE and 4CYL SE which don't have Full-Speed Range Dynamic Radar Cruise Control.
<sup>6</sup>Open sourced [Hyundai Giraffe](https://github.com/commaai/neo/tree/master/giraffe/hyundai) is designed for the 2019 Sante Fe; pinout may differ for other Hyundais.
<sup>7</sup>Community built Giraffe, find more information [here](https://zoneos.com/shop/).
<sup>8</sup>Community built Giraffe, find more information [here](https://github.com/adhintz/openpilot/wiki). Comma official Giraffe coming soon.

Community Maintained Cars
------
Expand All @@ -126,7 +125,7 @@ In Progress Cars
- Only remaining Toyota cars with no port yet are the Avalon and the Sienna.
- All Hyundai with SmartSense.
- All Kia with SCC and LKAS.
- All Chrysler, Jeep, Fiat with Adaprive Cruise Control and LaneSense.
- All Chrysler, Jeep, Fiat with Adaptive Cruise Control and LaneSense.

How can I add support for my car?
------
Expand Down Expand Up @@ -161,6 +160,8 @@ Directory structure
├── locationd # Soon to be home of precise location
├── logcatd # Android logcat as a service
├── loggerd # Logger and uploader of car data
├── mapd # Fetches map data and computes next global path
├── orbd # Computes ORB features from frames
├── proclogd # Logs information from proc
├── sensord # IMU / GPS interface code
├── test # Car simulator running code through virtual maneuvers
Expand Down
Empty file removed panda/board/pedal/obj/.gitkeep
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 0 additions & 9 deletions phonelibs/snpe/lib/.gitattributes

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libSNPE.so

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libSNPE_G.so

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libc++_shared.so

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libsnpe_adsp.so

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libsnpe_dsp_domains.so

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libsnpe_dsp_domains_system.so

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libsnpe_dsp_domains_v2.so

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libsymphony-cpu.so

This file was deleted.

3 changes: 0 additions & 3 deletions phonelibs/snpe/lib/libsymphonypower.so

This file was deleted.

2 changes: 1 addition & 1 deletion selfdrive/car/chrysler/chryslercan.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def create_lkas_hud(gear, lkas_active, hud_alert, car_fingerprint):
# LKAS_HUD (678) Controls what lane-keeping icon is displayed.

if hud_alert == VisualAlert.steerRequired:
msg = msg = '0000000300000000'.decode('hex')
msg = '0000000300000000'.decode('hex')
return make_can_msg(0x2a6, msg)

# TODO: use can packer
Expand Down
2 changes: 2 additions & 0 deletions selfdrive/car/chrysler/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ def get_params(candidate, fingerprint):

if candidate == CAR.JEEP_CHEROKEE:
ret.wheelbase = 2.91 # in meters
ret.steerRatio = 12.7
ret.steerActuatorDelay = 0.2 # in seconds

ret.centerToFront = ret.wheelbase * 0.44

Expand Down
6 changes: 5 additions & 1 deletion selfdrive/car/honda/carstate.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,11 @@ def update(self, cp, cp_cam):
self.user_brake = cp.vl["VSA_STATUS"]['USER_BRAKE']
self.pcm_acc_status = cp.vl["POWERTRAIN_DATA"]['ACC_STATUS']
self.hud_lead = cp.vl["ACC_HUD"]['HUD_LEAD']


# gets rid of Pedal Grinding noise when brake is pressed at slow speeds for some models
if self.CP.carFingerprint in (CAR.PILOT, CAR.PILOT_2019, CAR.RIDGELINE):
if self.user_brake > 0.05:
self.brake_pressed = 1

# carstate standalone tester
if __name__ == '__main__':
Expand Down

0 comments on commit e9b434b

Please sign in to comment.