mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
Updated C++ documentation
Fixed incorrect documentation for Task class, improved documentation for RobotDrive's drive() function (thanks to FRC Team 4579), and ran doxygen -u on cpp.doxy to remove deprecated XML_SCHEMA and XML_DTD tags Change-Id: I2f3fa4018d69b84e67376a5feb0eca43d5fa7623
This commit is contained in:
@@ -79,9 +79,9 @@ int32_t Task::GetPriority() {
|
||||
|
||||
/**
|
||||
* This routine changes a task's priority to a specified priority.
|
||||
* Priorities range from 0, the highest priority, to 255, the lowest priority.
|
||||
* Default task priority is 100.
|
||||
* @param priority The priority the task should run at.
|
||||
* Priorities range from 1, the lowest priority, to 99, the highest priority.
|
||||
* Default task priority is 60.
|
||||
* @param priority The priority at which the internal thread should run.
|
||||
* @returns true on success.
|
||||
*/
|
||||
bool Task::SetPriority(int32_t priority) {
|
||||
|
||||
Reference in New Issue
Block a user