Skip to content

Commit

Permalink
Merge pull request #986 from sharkcow/profile0_PR
Browse files Browse the repository at this point in the history
VWUP: changes.txt & bugfix
  • Loading branch information
dexterbg committed Mar 29, 2024
2 parents a28765a + 0d5e3c9 commit 0c17af9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions vehicle/OVMS.V3/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,10 @@ Open Vehicle Monitor System v3 - Change log
[alert] batt.12v.shutdown -- Alert about imminent 12V shutdown
- VFS toolkit: add recursive options to mkdir (-p) & rmdir (-r) commands
- Renault-Zoe-Ph1: add Cabin Pre-heat/cool Control
- VW e-Up (UpMiiGo):
T26: rework of wakeup & climate control (fix deleting of charge timer settings in ECU)
T26: add charge control
OBD: add charge port detection & official VW SOH


2022-09-01 MWJ 3.3.003 OTA release
Expand Down
8 changes: 8 additions & 0 deletions vehicle/OVMS.V3/components/vehicle_vweup/src/vweup_t26.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1429,6 +1429,14 @@ void OvmsVehicleVWeUp::SetChargeCurrent(int climit)
// "official" start/stop function; unfortunately sometimes charge keeps reverting to previous state after issuing (even multiple) PID 958 switch commands
void OvmsVehicleVWeUp::StartStopChargeT26(bool chargestart)
{
if (!StdMetrics.ms_v_door_chargeport->AsBool()) {
ESP_LOGE(TAG, "T26: Vehicle is not plugged!");
if (xChargeSemaphore != NULL)
xSemaphoreGive(xChargeSemaphore);
return;
}
else
ESP_LOGD(TAG, "T26: OK, plugged -> start charge");
ESP_LOGI(TAG, "T26: Charge turning %s", chargestart ? "ON" : "OFF");
if (chg_workaround)
StartStopChargeT26Workaround(chargestart);
Expand Down

0 comments on commit 0c17af9

Please sign in to comment.