@@ -94,7 +94,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
94
94
@deprecated
95
95
The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details
96
96
97
- @note This function cannot be called from ISR context.
97
+ @note You cannot call this function from ISR context.
98
98
*/
99
99
MBED_DEPRECATED_SINCE (" mbed-os-5.1" ,
100
100
" Replaced with RtosTimer(Callback<void()>, os_timer_type)" )
@@ -110,7 +110,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
110
110
@deprecated
111
111
The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details
112
112
113
- @note This function cannot be called from ISR context.
113
+ @note You cannot call this function from ISR context.
114
114
*/
115
115
MBED_DEPRECATED_SINCE (" mbed-os-5.2" ,
116
116
" The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details" )
@@ -128,7 +128,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
128
128
@deprecated
129
129
The RtosTimer has been superseded by the EventQueue. See RtosTimer.h for more details
130
130
131
- @note This function cannot be called from ISR context.
131
+ @note You cannot call this function from ISR context.
132
132
*/
133
133
template <typename T, typename M>
134
134
MBED_DEPRECATED_SINCE (" mbed-os-5.1" ,
@@ -147,7 +147,7 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
147
147
@a osErrorParameter internal error.
148
148
@a osErrorResource the timer is not running.
149
149
150
- @note This function cannot be called from ISR context.
150
+ @note You cannot call this function from ISR context.
151
151
*/
152
152
osStatus stop (void );
153
153
@@ -159,13 +159,13 @@ class RtosTimer : private mbed::NonCopyable<RtosTimer> {
159
159
@a osErrorParameter internal error or incorrect parameter value.
160
160
@a osErrorResource internal error (the timer is in an invalid timer state).
161
161
162
- @note This function cannot be called from ISR context.
162
+ @note You cannot call this function from ISR context.
163
163
*/
164
164
osStatus start (uint32_t millisec);
165
165
166
166
/* * RtosTimer destructor
167
167
*
168
- * @note This function cannot be called from ISR context.
168
+ * @note You cannot call this function from ISR context.
169
169
*/
170
170
~RtosTimer ();
171
171
0 commit comments