|
@@ -36,6 +36,7 @@ rt_err_t rt_device_register(rt_device_t dev, const char *name, rt_uint16_t flags
|
|
|
|
|
|
return RT_EOK;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_register);
|
|
|
|
|
|
/**
|
|
|
* This function removes a previously registered device driver
|
|
@@ -52,6 +53,7 @@ rt_err_t rt_device_unregister(rt_device_t dev)
|
|
|
|
|
|
return RT_EOK;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_unregister);
|
|
|
|
|
|
/**
|
|
|
* This function initializes all registered device driver
|
|
@@ -136,6 +138,7 @@ rt_device_t rt_device_find(const char *name)
|
|
|
/* not found */
|
|
|
return RT_NULL;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_find);
|
|
|
|
|
|
/**
|
|
|
* This function will initialize the specified device
|
|
@@ -231,6 +234,7 @@ rt_err_t rt_device_open(rt_device_t dev, rt_uint16_t oflag)
|
|
|
|
|
|
return result;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_open);
|
|
|
|
|
|
/**
|
|
|
* This function will close a device
|
|
@@ -264,6 +268,7 @@ rt_err_t rt_device_close(rt_device_t dev)
|
|
|
|
|
|
return result;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_close);
|
|
|
|
|
|
/**
|
|
|
* This function will read some data from a device.
|
|
@@ -295,6 +300,7 @@ rt_size_t rt_device_read(rt_device_t dev, rt_off_t pos, void *buffer, rt_size_t
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_read);
|
|
|
|
|
|
/**
|
|
|
* This function will write some data to a device.
|
|
@@ -326,6 +332,7 @@ rt_size_t rt_device_write(rt_device_t dev, rt_off_t pos, const void *buffer, rt_
|
|
|
|
|
|
return 0;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_write);
|
|
|
|
|
|
/**
|
|
|
* This function will perform a variety of control functions on devices.
|
|
@@ -351,6 +358,7 @@ rt_err_t rt_device_control(rt_device_t dev, rt_uint8_t cmd, void *arg)
|
|
|
|
|
|
return -RT_ENOSYS;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_control);
|
|
|
|
|
|
/**
|
|
|
* This function will set the indication callback function when device receives
|
|
@@ -369,6 +377,7 @@ rt_err_t rt_device_set_rx_indicate(rt_device_t dev, rt_err_t (*rx_ind)(rt_device
|
|
|
|
|
|
return RT_EOK;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_set_rx_indicate);
|
|
|
|
|
|
/**
|
|
|
* This function will set the indication callback function when device has written
|
|
@@ -387,5 +396,6 @@ rt_err_t rt_device_set_tx_complete(rt_device_t dev, rt_err_t (*tx_done)(rt_devic
|
|
|
|
|
|
return RT_EOK;
|
|
|
}
|
|
|
+RTM_EXPORT(rt_device_set_tx_complete);
|
|
|
|
|
|
#endif
|