12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef __CONSOLE_H
- #define __CONSOLE_H
- extern char console_buffer[];
- int console_init_f(void);
- int console_init_r(void);
- int console_assign(int file, const char *devname);
- int ctrlc(void);
- int had_ctrlc(void);
- void clear_ctrlc(void);
- int disable_ctrlc(int);
- int confirm_yesno(void);
- int console_record_init(void);
- void console_record_reset(void);
- void console_record_reset_enable(void);
- #ifdef CONFIG_CONSOLE_MUX
- #include <iomux.h>
- #endif
- #endif
|