mirror of
https://github.com/doppelhub/Honda_Insight_LiBCM.git
synced 2026-06-10 23:47:28 -04:00
Catalog Test Data
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
OEM BCM removed and replaced with LiBCM
|
||||
|
||||
e6405ab304d
|
||||
e6405ab41834
|
||||
e6405ae1207f
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
BIN
Electronics/Lithium Batteries/Ampacity Testing Over Time.ods
Normal file
BIN
Electronics/Lithium Batteries/Ampacity Testing Over Time.ods
Normal file
Binary file not shown.
BIN
Electronics/Lithium Batteries/BMS Pinout.ods
Normal file
BIN
Electronics/Lithium Batteries/BMS Pinout.ods
Normal file
Binary file not shown.
@@ -89,17 +89,18 @@ void SoC_updateUsingOpenCircuitVoltage(void)
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
//JTS2doNow: Don't update SoC until the key has been off for at least ten minutes. This prevents recent current from influencing resting battery voltage
|
||||
//only call this function when the key is off (or you'll get a check engine light)
|
||||
void SoC_openCircuitVoltage_handler(void)
|
||||
{
|
||||
#define KEY_OFF_SoC_UPDATE_PERIOD_MINUTES 10 //JTS2doNow: How long to wait?
|
||||
#define KEY_OFF_SoC_UPDATE_PERIOD_MILLISECONDS (KEY_OFF_SoC_UPDATE_PERIOD_MINUTES * 60000)
|
||||
|
||||
static uint32_t SoC_nextUpdate_milliseconds = 0;
|
||||
static uint32_t SoC_latestUpdate_milliseconds = 0;
|
||||
|
||||
if( (millis() - SoC_nextUpdate_milliseconds ) >= KEY_OFF_SoC_UPDATE_PERIOD_MILLISECONDS)
|
||||
if( (millis() - SoC_latestUpdate_milliseconds ) >= KEY_OFF_SoC_UPDATE_PERIOD_MILLISECONDS)
|
||||
{
|
||||
SoC_nextUpdate_milliseconds = millis();
|
||||
SoC_latestUpdate_milliseconds = millis();
|
||||
|
||||
debugUSB_displayUptime_seconds();
|
||||
|
||||
@@ -120,6 +121,7 @@ void SoC_openCircuitVoltage_handler(void)
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
//Don't call this function when current is flowing through the current sensor
|
||||
//Wait at least ten minutes after keyOff for most accurate results
|
||||
uint8_t SoC_estimateFromRestingCellVoltage_percent(void)
|
||||
{
|
||||
uint16_t restingCellVoltage = LTC68042result_loCellVoltage_get(); //JTS2doNow: need an algorithm to look at hi cell, too.
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
Printing labels:
|
||||
-Use "chain print" feed option
|
||||
-Add 15 spaces between each "BAY2+" label
|
||||
Reference in New Issue
Block a user