Fixed some comments.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9256 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-04-09 10:55:32 +00:00
parent 76ab007404
commit 9674afc283
1 changed files with 0 additions and 5 deletions

View File

@ -318,7 +318,6 @@ int32 OS_API_Init(void) {
/** /**
* @brief OS printf-like function. * @brief OS printf-like function.
* @note It is initially disabled. * @note It is initially disabled.
* @note It is not currently implemented.
* *
* @param[in] string formatter string * @param[in] string formatter string
* *
@ -380,7 +379,6 @@ int32 OS_Tick2Micros(void) {
/** /**
* @brief Returns the local time. * @brief Returns the local time.
* @note It is not currently implemented.
* *
* @param[out] time_struct the system time * @param[out] time_struct the system time
* @return An error code. * @return An error code.
@ -402,7 +400,6 @@ int32 OS_GetLocalTime(OS_time_t *time_struct) {
/** /**
* @brief Changes the local time. * @brief Changes the local time.
* @note It is not currently implemented.
* *
* @param[in] time_struct the system time * @param[in] time_struct the system time
* @return An error code. * @return An error code.
@ -574,7 +571,6 @@ int32 OS_TimerSet(uint32 timer_id, uint32 start_time, uint32 interval_time) {
/** /**
* @brief Retrieves a timer id by name. * @brief Retrieves a timer id by name.
* @note It is not currently implemented.
* *
* @param[out] timer_id pointer to a timer id variable * @param[out] timer_id pointer to a timer id variable
* @param[in] sem_name the timer name * @param[in] sem_name the timer name
@ -2113,7 +2109,6 @@ int32 OS_TaskGetIdByName(uint32 *task_id, const char *task_name) {
/** /**
* @brief Returns task information. * @brief Returns task information.
* @note This function can be safely called from timer callbacks or ISRs. * @note This function can be safely called from timer callbacks or ISRs.
* @note It is not currently implemented.
* @note Priority 255 is not available and it is transformed internally in * @note Priority 255 is not available and it is transformed internally in
* 254. * 254.
* *