reduce HRT_INTERVAL_MIN to 10 us

This commit is contained in:
Daniel Agar 2022-04-09 18:56:12 -04:00
parent 6096620828
commit a19e1f780e
No known key found for this signature in database
GPG Key ID: FD3CBA98017A69DE
6 changed files with 7 additions and 7 deletions

View File

@ -124,7 +124,7 @@
* reading a time and writing a deadline to the timer cannot
* result in missing the deadline.
*/
#define HRT_INTERVAL_MIN 50
#define HRT_INTERVAL_MIN 10
#define HRT_INTERVAL_MAX 4294951760LL
/*

View File

@ -119,7 +119,7 @@
* reading a time and writing a deadline to the timer cannot
* result in missing the deadline.
*/
#define HRT_INTERVAL_MIN 50
#define HRT_INTERVAL_MIN 10
#define HRT_INTERVAL_MAX 50000
/*

View File

@ -147,7 +147,7 @@
* reading a time and writing a deadline to the timer cannot
* result in missing the deadline.
*/
#define HRT_INTERVAL_MIN 50
#define HRT_INTERVAL_MIN 10
#define HRT_INTERVAL_MAX 50000
/*

View File

@ -100,7 +100,7 @@
* reading a time and writing a deadline to the timer cannot
* result in missing the deadline.
*/
#define HRT_INTERVAL_MIN 50
#define HRT_INTERVAL_MIN 10
#define HRT_INTERVAL_MAX 4000000000
/*

View File

@ -209,7 +209,7 @@ void hrt_usr_call(void *arg)
* reading a time and writing a deadline to the timer cannot
* result in missing the deadline.
*/
#define HRT_INTERVAL_MIN 50
#define HRT_INTERVAL_MIN 10
#define HRT_INTERVAL_MAX 50000
/*

View File

@ -55,8 +55,8 @@
#endif
// Intervals in usec
static constexpr unsigned HRT_INTERVAL_MIN = 50;
static constexpr unsigned HRT_INTERVAL_MAX = 50000000;
static constexpr unsigned HRT_INTERVAL_MIN = 10;
static constexpr unsigned HRT_INTERVAL_MAX = 50000;
/*
* Queue of callout entries.