Lower UBAT LED threshold to 11V

This commit is contained in:
Jasper Blanckenburg 2022-03-31 19:23:32 +02:00
parent c6793a2129
commit 6fcdb26621
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ void update_LED() {
((Vehicle_data.t_mot - 40) != 0xC8); // 105°C temp.water und !=200
bool g_auto = Vehicle_data.drs_active;
bool u_batt = Vehicle_data.u_batt <= 0xA9; // 11.95V batt.spann.
bool u_batt = Vehicle_data.u_batt <= 0x8E; // 11V batt.spann.
bool e_dros = Vehicle_data.e_thro; // error-bit
bool rev_lim = Vehicle_data.rev_lim;