mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
17 lines
423 B
C
17 lines
423 B
C
/* ******************************** */
|
|
/* Warning! Don't modify this file! */
|
|
/* ******************************** */
|
|
#ifndef __Device_Uart__H
|
|
#define __Device_Uart__H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "PikaObj.h"
|
|
|
|
PikaObj *New_Device_Uart(Args *args);
|
|
|
|
void Device_Uart_printName(PikaObj *self);
|
|
void Device_Uart_send(PikaObj *self, char * data);
|
|
void Device_Uart_setName(PikaObj *self, char * name);
|
|
|
|
#endif
|