Changes between Version 25 and Version 26 of library_stdio
- Timestamp:
- Oct 28, 2014, 11:13:34 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
library_stdio
v25 v26 50 50 The GIET_VM allows an user task to use a private TTY terminal, or to display log message on a shared TTY terminal. 51 51 52 === void '''giet_tty_ start'''() ===52 === void '''giet_tty_alloc'''() === 53 53 This function allocates a private terminal to the calling task, and registers the terminal index in the task context. Task exit if no TTY terminal available. 54 54 … … 86 86 The GIET_VM allows an user task to activate a private timer channel, generating periodical IRQs. This timer is allocated in the external multi-timers peripheral. 87 87 88 === void '''giet_timer_ start'''( unsigned int period )88 === void '''giet_timer_alloc'''( unsigned int period ) 89 89 This function allocates a private user timer to the calling task, registers the channel index 90 90 in the task context, and activates the timer. … … 117 117 The GIET_VM allows a user task to directly access a private NIC channel. 118 118 119 === unsigned int '''giet_nic_ open'''( ) ===119 === unsigned int '''giet_nic_alloc'''( ) === 120 120 This function allocates a private NIC channel to the calling task, and returns the channel index. 121 121 Exit if no available NIC channel.