Changeset b7fd2a0 in mainline for uspace/lib/c/include/device
- Timestamp:
- 2018-01-13T03:10:29Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- Location:
- uspace/lib/c/include/device
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/device/clock_dev.h
r36f0738 rb7fd2a0 44 44 } clock_dev_method_t; 45 45 46 extern int clock_dev_time_get(async_sess_t *, struct tm *);47 extern int clock_dev_time_set(async_sess_t *, struct tm *);46 extern errno_t clock_dev_time_get(async_sess_t *, struct tm *); 47 extern errno_t clock_dev_time_set(async_sess_t *, struct tm *); 48 48 49 49 #endif -
uspace/lib/c/include/device/hw_res.h
r36f0738 rb7fd2a0 116 116 } 117 117 118 extern int hw_res_get_resource_list(async_sess_t *, hw_resource_list_t *);119 extern int hw_res_enable_interrupt(async_sess_t *, int);120 extern int hw_res_disable_interrupt(async_sess_t *, int);121 extern int hw_res_clear_interrupt(async_sess_t *, int);118 extern errno_t hw_res_get_resource_list(async_sess_t *, hw_resource_list_t *); 119 extern errno_t hw_res_enable_interrupt(async_sess_t *, int); 120 extern errno_t hw_res_disable_interrupt(async_sess_t *, int); 121 extern errno_t hw_res_clear_interrupt(async_sess_t *, int); 122 122 123 extern int hw_res_dma_channel_setup(async_sess_t *, unsigned int, uint32_t,123 extern errno_t hw_res_dma_channel_setup(async_sess_t *, unsigned int, uint32_t, 124 124 uint32_t, uint8_t); 125 extern int hw_res_dma_channel_remain(async_sess_t *, unsigned, size_t *);125 extern errno_t hw_res_dma_channel_remain(async_sess_t *, unsigned, size_t *); 126 126 127 127 #endif -
uspace/lib/c/include/device/hw_res_parsed.h
r36f0738 rb7fd2a0 154 154 } 155 155 156 extern int hw_res_list_parse(const pio_window_t *, const hw_resource_list_t *,156 extern errno_t hw_res_list_parse(const pio_window_t *, const hw_resource_list_t *, 157 157 hw_res_list_parsed_t *, int); 158 extern int hw_res_get_list_parsed(async_sess_t *, hw_res_list_parsed_t *, int);158 extern errno_t hw_res_get_list_parsed(async_sess_t *, hw_res_list_parsed_t *, int); 159 159 160 160 #endif -
uspace/lib/c/include/device/led_dev.h
r36f0738 rb7fd2a0 43 43 } led_dev_method_t; 44 44 45 extern int led_dev_color_set(async_sess_t *, pixel_t);45 extern errno_t led_dev_color_set(async_sess_t *, pixel_t); 46 46 47 47 #endif -
uspace/lib/c/include/device/pio_window.h
r36f0738 rb7fd2a0 51 51 } pio_window_t; 52 52 53 extern int pio_window_get(async_sess_t *, pio_window_t *);53 extern errno_t pio_window_get(async_sess_t *, pio_window_t *); 54 54 55 55 #endif
Note:
See TracChangeset
for help on using the changeset viewer.