Skip to content

Commit

Permalink
Revert "Merge pull request commaai#66 from commaai/devel"
Browse files Browse the repository at this point in the history
This reverts commit 44705cf, reversing
changes made to 0408ba7.
  • Loading branch information
Casey Francis authored and Casey Francis committed Jun 21, 2020
1 parent 9cb3ee0 commit a213b83
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 35 deletions.
4 changes: 0 additions & 4 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
Version 0.7.6.1 (2020-06-16)
========================
* Hotfix: update kernel on some comma twos (orders #8570-#8680)

Version 0.7.6 (2020-06-05)
========================
* White panda is deprecated, upgrade to comma two or black panda
Expand Down
4 changes: 0 additions & 4 deletions cereal/car.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,6 @@ struct CarEvent @0x9b1657f34caf3ad3 {
startupWhitePanda @82;
canErrorPersistent @83;
belowEngageSpeed @84;
noGps @85;
focusRecoverActive @86;
wrongCruiseMode @87;
neosUpdateRequired @88;
}
}

Expand Down
7 changes: 0 additions & 7 deletions installer/updater/update_kernel.json

This file was deleted.

4 changes: 0 additions & 4 deletions launch_chffrplus.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,6 @@ function launch {
fi

"$DIR/installer/updater/updater" "file://$DIR/installer/updater/update.json"
else
if [[ $(uname -v) == "#1 SMP PREEMPT Wed Jun 10 12:40:53 PDT 2020" ]]; then
"$DIR/installer/updater/updater" "file://$DIR/installer/updater/update_kernel.json"
fi
fi


Expand Down
2 changes: 1 addition & 1 deletion selfdrive/common/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define COMMA_VERSION "0.7.6.1-release"
#define COMMA_VERSION "0.7.6-release"
5 changes: 0 additions & 5 deletions selfdrive/controls/controlsd.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env python3
import os
import gc
import subprocess
from cereal import car, log
from common.numpy_fast import clip
from common.realtime import sec_since_boot, set_realtime_priority, Ratekeeper, DT_CTRL
Expand Down Expand Up @@ -143,10 +142,6 @@ def __init__(self, sm=None, pm=None, can_sock=None):
# if hw_type == HwType.whitePanda:
# self.events.add(EventName.whitePandaUnsupported, static=True)

uname = subprocess.check_output(["uname", "-v"], encoding='utf8').strip()
if uname == "#1 SMP PREEMPT Wed Jun 10 12:40:53 PDT 2020":
self.events.add(EventName.neosUpdateRequired, static=True)

# controlsd is driven by can recv, expected at 100Hz
self.rk = Ratekeeper(100, print_delay_threshold=None)
self.prof = Profiler(False) # off by default
Expand Down
10 changes: 0 additions & 10 deletions selfdrive/controls/lib/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,16 +507,6 @@ def calibration_incomplete_alert(CP, sm, metric):
ET.NO_ENTRY: NoEntryAlert("Speed Too Low"),
},

EventName.neosUpdateRequired: {
ET.PERMANENT: Alert(
"NEOS Update Required",
"Please Wait for Update",
AlertStatus.normal, AlertSize.mid,
Priority.HIGHEST, VisualAlert.none, AudibleAlert.none, 0., 0., .2),
ET.NO_ENTRY: NoEntryAlert("NEOS Update Required"),
},


EventName.sensorDataInvalid: {
ET.PERMANENT: Alert(
"No Data from Device Sensors",
Expand Down

0 comments on commit a213b83

Please sign in to comment.