Rev 3582 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3582 | Rev 3618 | ||
|---|---|---|---|
| Line 26... | Line 26... | ||
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| 29 | /** |
29 | /** |
| 30 | * @defgroup serial Serial console |
30 | * @defgroup serial Serial console |
| 31 | * @brief Serial console services (putc, puts, clear screen, cursor goto,...).* |
31 | * @brief Serial console services (putc, puts, clear screen, cursor goto,...) |
| 32 | * @{ |
32 | * @{ |
| 33 | */ |
33 | */ |
| 34 | 34 | ||
| 35 | /** @file |
35 | /** @file |
| 36 | */ |
36 | */ |
| Line 47... | Line 47... | ||
| 47 | void serial_set_style(const unsigned int mode); |
47 | void serial_set_style(const unsigned int mode); |
| 48 | void serial_cursor_disable(void); |
48 | void serial_cursor_disable(void); |
| 49 | void serial_cursor_enable(void); |
49 | void serial_cursor_enable(void); |
| 50 | void serial_console_init(putc_function_t putc_fn, uint32_t w, uint32_t h); |
50 | void serial_console_init(putc_function_t putc_fn, uint32_t w, uint32_t h); |
| 51 | 51 | ||
| 52 | #endif |
- | |
| 53 | 52 | #endif |
|
| - | 53 | ||