Better handling in case of ETB idle without ETB #1332
This commit is contained in:
parent
4854d123bb
commit
1ced7eafbc
|
@ -2040,7 +2040,7 @@ typedef enum {
|
|||
CUSTOM_ERR_6679 = 6679,
|
||||
|
||||
CUSTOM_ERR_6680 = 6680,
|
||||
CUSTOM_ERR_6681 = 6681,
|
||||
CUSTOM_DELTA_NOT_POSITIVE = 6681,
|
||||
CUSTOM_ERR_6682 = 6682,
|
||||
CUSTOM_SAME_TWICE = 6683,
|
||||
CUSTOM_ERR_6684 = 6684,
|
||||
|
@ -2082,7 +2082,7 @@ typedef enum {
|
|||
CUSTOM_INVALID_ADC = 6720,
|
||||
CUSTOM_INVALID_MODE_SETTING = 6721,
|
||||
CUSTOM_ERR_TASK_TIMER_OVERFLOW = 6722,
|
||||
CUSTOM_ERR_6723 = 6723,
|
||||
CUSTOM_NO_ETB_FOR_IDLE = 6723,
|
||||
CUSTOM_ERR_6724 = 6724,
|
||||
CUSTOM_ERR_6725 = 6725,
|
||||
CUSTOM_ERR_6726 = 6726,
|
||||
|
|
|
@ -79,7 +79,7 @@ void setHardwareUsTimer(int32_t deltaTimeUs) {
|
|||
}
|
||||
if (deltaTimeUs < 2)
|
||||
deltaTimeUs = 2; // for some reason '1' does not really work
|
||||
efiAssertVoid(CUSTOM_ERR_6681, deltaTimeUs > 0, "not positive deltaTimeUs");
|
||||
efiAssertVoid(CUSTOM_DELTA_NOT_POSITIVE, deltaTimeUs > 0, "not positive deltaTimeUs");
|
||||
if (deltaTimeUs >= TOO_FAR_INTO_FUTURE_US) {
|
||||
// we are trying to set callback for too far into the future. This does not look right at all
|
||||
firmwareError(CUSTOM_ERR_TIMER_OVERFLOW, "setHardwareUsTimer() too far: %d", deltaTimeUs);
|
||||
|
|
Loading…
Reference in New Issue