File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
tests/arm-cmsis-rtos-validator/Source Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 17
17
// #define RTE_RV_GENWAIT /* RTOS Validation - GenWait test enabled */
18
18
// #define RTE_RV_MAILQUEUE /* RTOS Validation - MailQueue test enabled */
19
19
#define RTE_RV_MEMORYPOOL /* RTOS Validation - MemoryPool test enabled */
20
- // #define RTE_RV_MSGQUEUE /* RTOS Validation - MsgQueue test enabled */
20
+ #define RTE_RV_MSGQUEUE /* RTOS Validation - MsgQueue test enabled */
21
21
#define RTE_RV_MUTEX /* RTOS Validation - Mutex test enabled */
22
22
#define RTE_RV_SEMAPHORE /* RTOS Validation - Semaphore test enabled */
23
23
#define RTE_RV_SIGNAL /* RTOS Validation - Signal test enabled */
Original file line number Diff line number Diff line change @@ -50,9 +50,9 @@ osEvent MsgQEv_Isr;
50
50
#define MSG_THREAD_TO_ISR_PERIOD 2 /* Interrupt period in miliseconds */
51
51
// [ILG]
52
52
#if defined(DEBUG )
53
- #define MSG_THREAD_TO_ISR_TIMEOUT 500 /* Timeout in ms -> 1sec @ 2ms */
53
+ #define MSG_THREAD_TO_ISR_TIMEOUT 50 /* Timeout in ms -> . 1sec @ 2ms */
54
54
#else
55
- #define MSG_THREAD_TO_ISR_TIMEOUT 2500 /* Timeout in ms -> 5sec @ 2ms */
55
+ #define MSG_THREAD_TO_ISR_TIMEOUT 250 /* Timeout in ms -> . 5sec @ 2ms */
56
56
#endif
57
57
58
58
static void Isr_MsgReceive (void );
@@ -62,9 +62,9 @@ static void Isr_MsgReceive (void);
62
62
#define MSG_ISR_TO_THREAD_PERIOD 2 /* Interrupt period in miliseconds */
63
63
// [ILG]
64
64
#if defined(DEBUG )
65
- #define MSG_ISR_TO_THREAD_TIMEOUT 500 /* Timeout in ms -> 1sec @ 2ms */
65
+ #define MSG_ISR_TO_THREAD_TIMEOUT 50 /* Timeout in ms -> . 1sec @ 2ms */
66
66
#else
67
- #define MSG_ISR_TO_THREAD_TIMEOUT 2500 /* Timeout in ms -> 5sec @ 2ms */
67
+ #define MSG_ISR_TO_THREAD_TIMEOUT 250 /* Timeout in ms -> . 5sec @ 2ms */
68
68
#endif
69
69
70
70
static void Isr_MsgSend (void );
You can’t perform that action at this time.
0 commit comments