mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-29 14:52:12 +01:00
OP-1026 fix review issues
This commit is contained in:
parent
2bcbf7dc86
commit
519d74ad1b
@ -169,8 +169,10 @@ uint8_t PIOS_TASK_MONITOR_GetIdlePercentage()
|
|||||||
xSemaphoreGiveRecursive(mLock);
|
xSemaphoreGiveRecursive(mLock);
|
||||||
return running_time_percentage;
|
return running_time_percentage;
|
||||||
|
|
||||||
#endif
|
#else
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -107,7 +107,6 @@ extern void PIOS_TASK_MONITOR_ForEachTask(TaskMonitorTaskInfoCallback callback,
|
|||||||
/**
|
/**
|
||||||
* Return the idle task running time percentage.
|
* Return the idle task running time percentage.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern uint8_t PIOS_TASK_MONITOR_GetIdlePercentage();
|
extern uint8_t PIOS_TASK_MONITOR_GetIdlePercentage();
|
||||||
|
|
||||||
#endif // PIOS_TASK_MONITOR_H
|
#endif // PIOS_TASK_MONITOR_H
|
||||||
|
@ -65,6 +65,7 @@
|
|||||||
#define INCLUDE_xTaskGetCurrentTaskHandle 1
|
#define INCLUDE_xTaskGetCurrentTaskHandle 1
|
||||||
#define INCLUDE_uxTaskGetStackHighWaterMark 1
|
#define INCLUDE_uxTaskGetStackHighWaterMark 1
|
||||||
#define INCLUDE_xTaskGetIdleTaskHandle 1
|
#define INCLUDE_xTaskGetIdleTaskHandle 1
|
||||||
|
|
||||||
/* This is the raw value as per the Cortex-M3 NVIC. Values can be 255
|
/* This is the raw value as per the Cortex-M3 NVIC. Values can be 255
|
||||||
(lowest) to 1 (highest maskable) to 0 (highest non-maskable). */
|
(lowest) to 1 (highest maskable) to 0 (highest non-maskable). */
|
||||||
#define configKERNEL_INTERRUPT_PRIORITY 15 << 4 /* equivalent to NVIC priority 15 */
|
#define configKERNEL_INTERRUPT_PRIORITY 15 << 4 /* equivalent to NVIC priority 15 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user