reducing magic constant
This commit is contained in:
parent
442e490fcb
commit
731fd89ef7
|
@ -197,7 +197,7 @@ void InjectionEvent::onTriggerTooth(int rpm, efitick_t nowNt, float currentPhase
|
|||
static void handleFuel(int rpm, efitick_t nowNt, float currentPhase, float nextPhase) {
|
||||
ScopePerf perf(PE::HandleFuel);
|
||||
|
||||
efiAssertVoid(ObdCode::CUSTOM_STACK_6627, getCurrentRemainingStack() > 128, "lowstck#3");
|
||||
efiAssertVoid(ObdCode::CUSTOM_STACK_6627, getCurrentRemainingStack() > EXPECTED_REMAINING_STACK, "lowstck#3");
|
||||
|
||||
LimpState limitedFuelState = getLimpManager()->allowInjection();
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ static void endAveraging(MapAverager* arg);
|
|||
static size_t currentMapAverager = 0;
|
||||
|
||||
static void startAveraging(scheduling_s *endAveragingScheduling) {
|
||||
efiAssertVoid(ObdCode::CUSTOM_ERR_6649, getCurrentRemainingStack() > 128, "lowstck#9");
|
||||
efiAssertVoid(ObdCode::CUSTOM_ERR_6649, getCurrentRemainingStack() > EXPECTED_REMAINING_STACK, "lowstck#9");
|
||||
|
||||
// TODO: set currentMapAverager based on cylinder bank
|
||||
auto& averager = getMapAvg(currentMapAverager);
|
||||
|
@ -126,7 +126,7 @@ void MapAverager::stop() {
|
|||
* as fast as possible
|
||||
*/
|
||||
void mapAveragingAdcCallback(float instantVoltage) {
|
||||
efiAssertVoid(ObdCode::CUSTOM_ERR_6650, getCurrentRemainingStack() > 128, "lowstck#9a");
|
||||
efiAssertVoid(ObdCode::CUSTOM_ERR_6650, getCurrentRemainingStack() > EXPECTED_REMAINING_STACK, "lowstck#9a");
|
||||
|
||||
SensorResult mapResult = getMapAvg(currentMapAverager).submit(instantVoltage);
|
||||
|
||||
|
|
|
@ -694,7 +694,7 @@ uint32_t TriggerDecoderBase::findTriggerZeroEventIndex(
|
|||
TriggerWaveform& shape,
|
||||
const TriggerConfiguration& triggerConfiguration) {
|
||||
#if EFI_PROD_CODE
|
||||
efiAssert(ObdCode::CUSTOM_ERR_ASSERT, getCurrentRemainingStack() > 128, "findPos", -1);
|
||||
efiAssert(ObdCode::CUSTOM_ERR_ASSERT, getCurrentRemainingStack() > EXPECTED_REMAINING_STACK, "findPos", -1);
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ extern bool isSpiInitialized[5];
|
|||
* Only one consumer can use SPI bus at a given time
|
||||
*/
|
||||
void lockSpi(spi_device_e device) {
|
||||
efiAssertVoid(ObdCode::CUSTOM_STACK_SPI, getCurrentRemainingStack() > 128, "lockSpi");
|
||||
efiAssertVoid(ObdCode::CUSTOM_STACK_SPI, getCurrentRemainingStack() > EXPECTED_REMAINING_STACK, "lockSpi");
|
||||
spiAcquireBus(getSpiDevice(device));
|
||||
}
|
||||
|
||||
|
@ -177,7 +177,7 @@ void onFastAdcComplete(adcsample_t*) {
|
|||
/**
|
||||
* this callback is executed 10 000 times a second, it needs to be as fast as possible
|
||||
*/
|
||||
efiAssertVoid(ObdCode::CUSTOM_STACK_ADC, getCurrentRemainingStack() > 128, "lowstck#9b");
|
||||
efiAssertVoid(ObdCode::CUSTOM_STACK_ADC, getCurrentRemainingStack() > EXPECTED_REMAINING_STACK, "lowstck#9b");
|
||||
|
||||
#if EFI_SENSOR_CHART && EFI_SHAFT_POSITION_INPUT
|
||||
if (getEngineState()->sensorChartMode == SC_AUX_FAST1) {
|
||||
|
|
|
@ -78,7 +78,7 @@ void Logging::appendFast(const char *text) {
|
|||
}
|
||||
|
||||
void Logging::appendPrintf(const char *fmt, ...) {
|
||||
efiAssertVoid(ObdCode::CUSTOM_APPEND_STACK, getCurrentRemainingStack() > 128, "lowstck#4");
|
||||
efiAssertVoid(ObdCode::CUSTOM_APPEND_STACK, getCurrentRemainingStack() > EXPECTED_REMAINING_STACK, "lowstck#4");
|
||||
|
||||
size_t available = remainingSize();
|
||||
|
||||
|
|
Loading…
Reference in New Issue