only:extracting magic constant
This commit is contained in:
parent
c85113e80c
commit
dda8a3ed6b
|
@ -187,6 +187,8 @@ struct_no_prefix engine_configuration_s
|
|||
|
||||
#define DWELL_CURVE_SIZE 8
|
||||
|
||||
#define DEFAULT_RPM_AXIS_HIGH_VALUE 7000
|
||||
|
||||
#define CRANKING_CURVE_SIZE 8
|
||||
|
||||
#define CRANKING_ENRICH_COUNT 6
|
||||
|
|
|
@ -197,5 +197,5 @@ void setRpmBin(kType array[], int size, float idleRpm, float topRpm) {
|
|||
*/
|
||||
template<typename TValue, int TSize>
|
||||
void setRpmTableBin(TValue (&array)[TSize]) {
|
||||
setRpmBin(array, TSize, 800, 7000);
|
||||
setRpmBin(array, TSize, 800, DEFAULT_RPM_AXIS_HIGH_VALUE);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue