* @brief this function will unlock device file system. * * @note please don't invoke it on ISR. */
| 154 | * @note please don't invoke it on ISR. |
| 155 | */ |
| 156 | void dfs_unlock(void) |
| 157 | { |
| 158 | rt_mutex_release(&fslock); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * @brief this function will unlock fd table. |
no test coverage detected