* @brief Initializes a device. * * This system call initializes the specified device, preparing it for use. Device initialization * typically involves setting up necessary hardware configurations, registering device drivers, * and ensuring that the device is in a ready state for further operations. This function should * be called before interacting with the device. * * @param[in] dev A po
| 4842 | * may result in unpredictable behavior. |
| 4843 | */ |
| 4844 | sysret_t sys_device_init(rt_device_t dev) |
| 4845 | { |
| 4846 | return rt_device_init(dev); |
| 4847 | } |
| 4848 | |
| 4849 | /** |
| 4850 | * @brief Registers a device with the system. |
nothing calls this directly
no test coverage detected