Skip to content
Snippets Groups Projects
Commit 7d17e0b7 authored by Florian Pose's avatar Florian Pose
Browse files

Fixed SII reading timeout bug on 100 Hz kernels.

parent c4aebb4e
No related branches found
No related tags found
No related merge requests found
......@@ -43,15 +43,18 @@
#include "master.h"
#include "fsm_sii.h"
/**
* Read/Write timeout. [ms]
/** Read/write timeout [ms].
*
* Used to calculate timeouts bsed on the jiffies counter.
*
* \attention Must be more than 10 to avoid problems on kernels that run with
* a timer interupt frequency of 100 Hz.
*/
#define SII_TIMEOUT 10
#define SII_TIMEOUT 20
/**
* Time before evaluating answer at writing. [ms]
/** Time before evaluating answer at writing [ms].
*/
#define SII_INHIBIT 5
#define SII_INHIBIT 5
//#define SII_DEBUG
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment