RTno is communicating library and framework which allows you to make your embedded device capable of communicating with RT-middleware world. RT-middleware is a platform software to realize Robotic system. In RTM, robots are developed by constructing robotics technologies\' elements (components) named RT-component. Therefore, the RTno helps you to create your own RT-component with your mbed and arduino. To know how to use your RTno device, visit here: http://ysuga.net/robot_e/rtm_e/rtc_e/1065?lang=en To know about RT-middleware and RT-component, visit http://www.openrtm.org

Dependencies:   EthernetNetIf

Dependents:   RTnoV3_LED RTnoV3_Template RTnoV3_ADC RTnoV3_Timer ... more

Committer:
ysuga
Date:
Thu Feb 09 02:33:10 2012 +0000
Revision:
0:9fac71a0bff3
RTno Version 3: RTno is a software library and tool to connect embedded devices like arduino and mbed to RT-middleware world.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ysuga 0:9fac71a0bff3 1 #ifndef ETHER_TCP_HEADER_INCLUDED
ysuga 0:9fac71a0bff3 2 #define ETHER_TCP_HEADER_INCLUDED
ysuga 0:9fac71a0bff3 3
ysuga 0:9fac71a0bff3 4
ysuga 0:9fac71a0bff3 5 #include <stdint.h>
ysuga 0:9fac71a0bff3 6 #include "SerialDevice.h"
ysuga 0:9fac71a0bff3 7
ysuga 0:9fac71a0bff3 8 void EtherTcp_init(uint8_t* mac, uint8_t *ip, uint8_t *gateway, uint8_t *subnet, uint16_t port);
ysuga 0:9fac71a0bff3 9
ysuga 0:9fac71a0bff3 10 void EtherTcp_putc(const char c);
ysuga 0:9fac71a0bff3 11 uint8_t EtherTcp_available();
ysuga 0:9fac71a0bff3 12 char EtherTcp_getc();
ysuga 0:9fac71a0bff3 13
ysuga 0:9fac71a0bff3 14 #endif // #ifndef ETHER_HEADER_INCLUDED