commit de1642e03e013111fad8526891d4c3d77056d303 Author: Michael Balzer Date: Sun May 6 22:53:41 2018 +0200 Setup: restore default access on early crash commit a76713b4d1722368bb934260ee6112d741551526 Author: Michael Balzer Date: Sun May 6 16:58:44 2018 +0200 Setup: bug fixes, triple wifi validation, event based monitors commit b383fd85f9ad688413468af83f66f2a03037d90f Author: Michael Balzer Date: Sun May 6 13:32:01 2018 +0200 Web UI: automatic status panel updates on events commit a8e66acecb1a9c50e5ae008e47db5fe137d462a6 Author: Michael Balzer Date: Sun May 6 13:10:27 2018 +0200 Server V2&V3: added state change events commit 2ba93d75e313073cd230e7781defa49afa086f46 Author: Michael Balzer Date: Sun May 6 10:50:24 2018 +0200 Boot: reset firmware_update flag (fix issue #111) commit 8c5891b475d6a3616a30eae91056d6ae73681aa9 Author: Michael Balzer Date: Sun May 6 09:18:53 2018 +0200 Setup: server label changes commit 9160036f4c37683c72e86d83cdb41975e5f3ad42 Author: Mark Webb-Johnson Date: Sun May 6 11:05:12 2018 +0800 ovmsdev@caederus.org fix to OBDII VIN polling (ISO-TP) commit 9e3a014766fb48abf28ffaeb119a892f5fecb6d8 Author: Michael Balzer Date: Sat May 5 23:59:58 2018 +0200 Twizy: allow battery capacity up to 120% commit 651e2ec7800987e313c8e555af3ddd9f4d14d7d7 Author: Michael Balzer Date: Sat May 5 23:58:33 2018 +0200 Config: fix upgrade for setup wizard commit 12615a6d74d369593d02c852eeff98174a67b2f9 Author: Michael Balzer Date: Sat May 5 20:25:40 2018 +0200 Webserver: setup wizard Note: includes raising the events task stack size from 6K to 7K, because the stack otherwise would generally overflow when starting both a vehicle module and a server connection after boot. commit b1ab05da5829ff4c0adb88ed32c228cb74e24dac Author: Michael Balzer Date: Sat May 5 20:20:41 2018 +0200 Webserver: provide simple and buttonized radio groups commit b40f8fc178e68f6da6d18ebd2e264af2fefba1ef Author: Michael Balzer Date: Sat May 5 20:11:28 2018 +0200 ServerV2: fixed race condition on login, added auth error status commit b27edcc7c95f2dc3d4e7da29796ca26a53c5110d Author: Michael Balzer Date: Sat May 5 17:26:47 2018 +0200 SDcard: fix build dependencies commit bb8b8c5ed8b7ac90f3f7f9cad855db85adbc59c2 Author: Michael Balzer Date: Fri May 4 16:34:03 2018 +0200 Netmanager: fix mongoose task restart race condition commit b868750316a8d21cb1a5371c8668f14294d24630 Author: Michael Balzer Date: Fri May 4 16:33:03 2018 +0200 Build config: fix missing LWIP_SO_REUSE commit 69f60888cfd87a5e28748ad66dd89d47b2adca96 Author: Mark Webb-Johnson Date: Thu May 3 13:52:11 2018 +0800 Support conditional compilation without MAX7317 (without SIMCOM) commit 4a0c18dfdee99ee754a8f15bdc57ede7b6c15c36 Author: Mark Webb-Johnson Date: Thu May 3 09:23:13 2018 +0800 Issue#99: Can't turn off SIMCOM power - make simcom depend on max7317 commit bfcc719d166561c8b2a7c9734857fa5c0ef512af Author: Michael Balzer Date: Wed May 2 10:19:14 2018 +0200 OTA: fix version comparison for "dirty" builds commit 8c724a6dd745c256e4e5a68630003ea9d5ea23a5 Author: Robin O'Leary Date: Wed May 2 10:06:13 2018 +0100 Comment that ms_v_bat_temp 0x5c0 is from LBC. Remove redundant declaration of m_odometer_units. diff --git a/vehicle/OVMS.V3/components/vehicle_nissanleaf/src/vehicle_nissanleaf.cpp b/vehicle/OVMS.V3/components/vehicle_nissanleaf/src/vehicle_nissanleaf.cpp index 05ee2d0..e31edac 100644 --- a/vehicle/OVMS.V3/components/vehicle_nissanleaf/src/vehicle_nissanleaf.cpp +++ b/vehicle/OVMS.V3/components/vehicle_nissanleaf/src/vehicle_nissanleaf.cpp @@ -434,9 +434,7 @@ void OvmsVehicleNissanLeaf::IncomingFrameCan1(CAN_frame_t* p_frame) } break; case 0x5c0: - /* Another "ambient" temperature, but this one reacts to outside changes - * quite slowly. Seems likely it is battery pack temperature, as the rest - * of the packet is about charging. + /* Battery Temperature as reported by the LBC. * Effectively has only 7-bit precision, as the bottom bit is always 0. */ if ( (d[0]>>6) == 1 ) diff --git a/vehicle/OVMS.V3/components/vehicle_nissanleaf/src/vehicle_nissanleaf.h b/vehicle/OVMS.V3/components/vehicle_nissanleaf/src/vehicle_nissanleaf.h index aac05a3..fc957c7 100644 --- a/vehicle/OVMS.V3/components/vehicle_nissanleaf/src/vehicle_nissanleaf.h +++ b/vehicle/OVMS.V3/components/vehicle_nissanleaf/src/vehicle_nissanleaf.h @@ -100,7 +100,6 @@ class OvmsVehicleNissanLeaf : public OvmsVehicle uint8_t nl_remote_command_ticker; // number of tenths remaining to send remote command frames uint16_t nl_cc_off_ticker; // seconds before we send the climate control off command TimerHandle_t m_remoteCommandTimer; - metric_unit_t m_odometer_units = Other; OvmsMetricInt *m_gids; OvmsMetricFloat *m_hx; }; commit 24e025eb8eb3982c435123bfa78ae5510319c0d4 Author: Robin O'Leary Date: Wed May 2 03:09:24 2018 +0100 Nissan Leaf: Set ms_v_env_on from 0x60d[1] (ms_v_env_awake still follows activity of 0x284). Fix ms_v_env_temp conversion to °C. Make multiplex check for ms_v_bat_temp more precise. Remove setting odometer units (always reports km). commit abab049d6c07621b1c0b169906ddc46da6c4b626 Author: Michael Balzer Date: Tue May 1 20:50:42 2018 +0200 CANopen: mitigate performance issues - Raised SDO default timeouts from 50 to 100 ms - Assigned tasks to core #0 with priority 7 - Changed log levels for EMCY & NMT messages from info to verbose commit 53ad4594ca82d1f09706ea39982b61f10eb8e2a7 Author: Michael Balzer Date: Tue May 1 20:47:36 2018 +0200 Twizy: fixed auto power checkpoints, inhibit auto adjust in cfgmode commit 7bd7c8310eb09a6a6029a9ea723c8cc0546b30e7 Author: Michael Balzer Date: Tue May 1 20:44:35 2018 +0200 Vehicle/web UI: provide & use short name for vehicle menu commit fc97c5bc697ccdde1e448e4c818122e1b0515bc4 Author: Geir Øyvind Vælidalo Date: Tue May 1 18:19:20 2018 +0200 Fixed problem with setting charge state commit 0f96b3097c25f72daa02713c01a962634206eb4d Author: Mark Webb-Johnson Date: Tue May 1 21:36:04 2018 +0800 Documentation for 3.1.005 commit 81ce53d38bb6766a5ab1c45de3c89c6321f1f49d Author: Michael Balzer Date: Tue May 1 14:26:22 2018 +0200 Housekeeping: changed default 12V factor to 195.7 commit 16b828f92374eb752855652a2a1d0ecf38e72728 Author: Michael Balzer Date: Tue May 1 14:25:40 2018 +0200 SDcard: two phase unmount process, auto close SD logs Note: the shell command "sd unmount" now waits up to five seconds for the unmount to finish, so it normally should be safe to remove the SD card when the command returns. commit f416d36c38f002d690a99f670d8fee4442b444e6 Author: Michael Balzer Date: Tue May 1 14:20:24 2018 +0200 Utility class: OvmsSemaphore commit 28357efec06ddbfeed5a017b196f8d12bffdb428 Author: Mark Webb-Johnson Date: Tue May 1 21:36:04 2018 +0800 Documentation for 3.1.005 commit b4f42fe3a538d409bd033b74d13d9fed3f8b8296 Author: Michael Balzer Date: Tue May 1 14:26:22 2018 +0200 Housekeeping: changed default 12V factor to 195.7 commit f26f9a666bf570464615b2306cd5ba9cbe53ee68 Author: Michael Balzer Date: Tue May 1 14:25:40 2018 +0200 SDcard: two phase unmount process, auto close SD logs Note: the shell command "sd unmount" now waits up to five seconds for the unmount to finish, so it normally should be safe to remove the SD card when the command returns. commit c28d732210a1dc09c4df823e8d9a687ef9339395 Author: Michael Balzer Date: Tue May 1 14:20:24 2018 +0200 Utility class: OvmsSemaphore commit adff68634e77166c6fdecf7338764fe20dbe3586 Author: Geir Øyvind Vælidalo Date: Tue May 1 13:55:01 2018 +0200 Fixed quite a few bugs in the Kia Soul. Fixed some bugs in the metrics. Increased time between each poll for some diagnostics in order decrease bus-traffic and battery consumption. Removed a charge state notification that was sent evry second when charging. Refactored the ideal-range calculation. commit 7b2fd3398f0ac2f6a27f0987f362fbf925be7f39 Author: Mark Webb-Johnson Date: Tue May 1 17:23:30 2018 +0800 Issue#61: Tesla Roadster: CAC metric commit 813dec83ccd2c7a14aa6c61eb3f6358adec2b5b5 Author: Mark Webb-Johnson Date: Tue May 1 16:56:28 2018 +0800 Vehicle: Large number of convenience functions for vehicle support modules commit c8dd7e82ceb02db3e0ab138f6dc7c4c18f06ff83 Author: Mark Webb-Johnson Date: Tue May 1 16:16:31 2018 +0800 Fix boot reason display for firmware update commit 1c27fb471c97ed2fa727646a3f0347857dca2e75 Author: Mark Webb-Johnson Date: Tue May 1 16:11:06 2018 +0800 Support boot soft reset: wifi mdns ota sdcard simcom netmanager commit 4ae7e8cc913391c028b2cbdafd3fc402aaa8642f Author: Mark Webb-Johnson Date: Tue May 1 16:10:30 2018 +0800 Boot soft reset mechanism, and support for notification of firmware update as reset reason