Yuki Suga / RTnoV4

Dependencies:   EthernetInterface mbed-rtos

Committer:
ysuga
Date:
Thu Aug 29 05:29:55 2013 +0000
Revision:
7:6c7af1d50fb3
Parent:
0:5f7bc45bc2e8
update v5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ysuga 0:5f7bc45bc2e8 1 #include "ProxySyncEC.h"
ysuga 0:5f7bc45bc2e8 2
ysuga 0:5f7bc45bc2e8 3 void ProxySyncEC_start() {}
ysuga 0:5f7bc45bc2e8 4 void ProxySyncEC_resume() {}
ysuga 0:5f7bc45bc2e8 5 void ProxySyncEC_suspend() {}
ysuga 0:5f7bc45bc2e8 6
ysuga 0:5f7bc45bc2e8 7
ysuga 0:5f7bc45bc2e8 8 void ProxySyncEC_init() {
ysuga 0:5f7bc45bc2e8 9 EC_init(0x21);
ysuga 0:5f7bc45bc2e8 10
ysuga 0:5f7bc45bc2e8 11 EC_start = ProxySyncEC_start;
ysuga 0:5f7bc45bc2e8 12 EC_suspend = ProxySyncEC_suspend;
ysuga 0:5f7bc45bc2e8 13 EC_resume = ProxySyncEC_resume;
ysuga 0:5f7bc45bc2e8 14 }