From a512c73dd92549475ccc90cd7a5bf3482142733a Mon Sep 17 00:00:00 2001 From: Sergi Granell Date: Wed, 29 Nov 2017 23:38:29 +0100 Subject: Add psp2kern/{lowio/pervasive.h, power.h, syscon.h, uart.h}, minor nits (#255) * Add psp2kern/{lowio/pervasive.h, power.h, syscon.h, uart.h}, minor nits * Fix psp2kern/power.h kernelgroup * Remove stray kscePervasiveUartSetBaudrate from psp2kern/uart.h * Add missing docs * Documentation improvements --- include/kernel/uart.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 include/kernel/uart.h (limited to 'include/kernel/uart.h') diff --git a/include/kernel/uart.h b/include/kernel/uart.h new file mode 100644 index 0000000..97eebfd --- /dev/null +++ b/include/kernel/uart.h @@ -0,0 +1,20 @@ +#ifndef _PSP2_KERN_UART_H_ +#define _PSP2_KERN_UART_H_ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +int sceUartInit(int port); +int sceUartReadAvailable(int port); +int sceUartRead(int port); +int sceUartWrite(int port, char data); + +#ifdef __cplusplus +} +#endif + +#endif /* _PSP2_KERN_UART_H_ */ + -- cgit v1.2.3