Changed AL state change timeout. Maybe a fix for #32.

This commit is contained in:
Florian Pose 2024-02-08 12:43:17 +01:00
parent 5f8d97edcf
commit 251bb4a147
2 changed files with 5 additions and 1 deletions

1
NEWS
View File

@ -10,6 +10,7 @@ Changes in 1.6.0:
* Dropped support for kernels < 3.0.
* Allow to query the scanning progress via API.
* Added EoE set IP command via command-line-tool.
* Changed the default AL state change timeout from 5 to 10 s.
Changes since 1.5.2:

View File

@ -33,8 +33,11 @@
/****************************************************************************/
/** Timeout while waiting for AL state change [s].
*
* ETG2000_S_R_V1i0i15 section 5.3.7.2 mentions 10 s as maximum AL state
* change timeout.
*/
#define EC_AL_STATE_CHANGE_TIMEOUT 5
#define EC_AL_STATE_CHANGE_TIMEOUT 10
/****************************************************************************/