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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ProxySyncEC.h Source File

ProxySyncEC.h

00001 #ifndef PROXY_SYNC_EXECUTION_CONTEXT
00002 #define PROXY_SYNC_EXECUTION_CONTEXT
00003 #include "ExecutionContext.h"
00004 void ProxySyncEC_init();
00005 
00006 #if 0
00007 
00008 namespace RTC {
00009   class ProxySyncEC : public ExecutionContext {
00010   private:
00011     
00012   public:
00013   ProxySyncEC() : ExecutionContext() {};
00014     virtual ~ProxySyncEC(){};
00015     
00016     void start(){};
00017     void suspend(){};
00018     void resume(){};
00019   };
00020 };
00021 #endif
00022 
00023 #endif //#ifndef PROXY_SYNC_EXECUTION_CONTEXT