Yuki Suga / RTnoV4

Dependencies:   EthernetInterface mbed-rtos

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RTnoProfile.h Source File

RTnoProfile.h

00001 #ifndef RTNO_PROFILE_HEADER_INCLUDED
00002 #define RTNO_PROFILE_HEADER_INCLUDED
00003 
00004 #include <stdint.h>
00005 #include "RTno.h"
00006 
00007 #include "InPort.h"
00008 #include "OutPort.h"
00009 
00010 
00011 void RTnoProfile_init();
00012 int RTnoProfile_addInPort(PortBase* port);
00013 int RTnoProfile_addOutPort(PortBase* port);
00014 
00015 PortBase* RTnoProfile_getInPort(const char* name, uint8_t nameLen);
00016 PortBase* RTnoProfile_getOutPort(const char* name, uint8_t nameLen);
00017 PortBase* RTnoProfile_getInPortByIndex(const uint8_t i);
00018 PortBase* RTnoProfile_getOutPortByIndex(const uint8_t i);
00019 
00020 int RTnoProfile_getNumInPort();
00021 int RTnoProfile_getNumOutPort();
00022 
00023 #endif
00024