Rev 1695 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1695 | Rev 1696 | ||
---|---|---|---|
Line 11... | Line 11... | ||
11 | import dongfang.mkt.frames.DebugRequestFrame; |
11 | import dongfang.mkt.frames.DebugRequestFrame; |
12 | import dongfang.mkt.frames.ExternalControlRequestFrame; |
12 | import dongfang.mkt.frames.ExternalControlRequestFrame; |
13 | import dongfang.mkt.frames.LoopbackTestRequestFrame; |
13 | import dongfang.mkt.frames.LoopbackTestRequestFrame; |
14 | import dongfang.mkt.frames.MotorTestRequestFrame; |
14 | import dongfang.mkt.frames.MotorTestRequestFrame; |
15 | import dongfang.mkt.frames.OSDDataRequestFrame; |
15 | import dongfang.mkt.frames.OSDDataRequestFrame; |
- | 16 | import dongfang.mkt.frames.ProfilerLabelRequestFrame; |
|
- | 17 | import dongfang.mkt.frames.ProfilerRequestFrame; |
|
16 | import dongfang.mkt.frames.ReadExternalControlRequestFrame; |
18 | import dongfang.mkt.frames.ReadExternalControlRequestFrame; |
17 | import dongfang.mkt.frames.ReadIMUConfigurationRequestFrame; |
19 | import dongfang.mkt.frames.ReadIMUConfigurationRequestFrame; |
18 | import dongfang.mkt.frames.ReadMotorMixerRequestFrame; |
20 | import dongfang.mkt.frames.ReadMotorMixerRequestFrame; |
19 | import dongfang.mkt.frames.ReadParamSetRequestFrame; |
21 | import dongfang.mkt.frames.ReadParamSetRequestFrame; |
20 | import dongfang.mkt.frames.ReadRCChannelsRequestFrame; |
22 | import dongfang.mkt.frames.ReadRCChannelsRequestFrame; |
Line 28... | Line 30... | ||
28 | import dongfang.mkt.frames.WriteParamSetRequestFrame; |
30 | import dongfang.mkt.frames.WriteParamSetRequestFrame; |
Line 29... | Line 31... | ||
29 | 31 | ||
30 | public interface RequestFrameVisitor { |
32 | public interface RequestFrameVisitor { |
31 | // void visit(RequestFrame f) throws IOException; |
33 | // void visit(RequestFrame f) throws IOException; |
- | 34 | void visit(AnalogDebugLabelRequestFrame f) throws IOException; |
|
32 | void visit(AnalogDebugLabelRequestFrame f) throws IOException; |
35 | void visit(ProfilerLabelRequestFrame f) throws IOException; |
- | 36 | void visit(DebugRequestFrame f) throws IOException; |
|
33 | void visit(DebugRequestFrame f) throws IOException; |
37 | void visit(ProfilerRequestFrame f) throws IOException; |
34 | void visit(LoopbackTestRequestFrame f) throws IOException; |
38 | void visit(LoopbackTestRequestFrame f) throws IOException; |
35 | void visit(MotorTestRequestFrame f) throws IOException; |
39 | void visit(MotorTestRequestFrame f) throws IOException; |
36 | void visit(VersionRequestFrame f) throws IOException; |
40 | void visit(VersionRequestFrame f) throws IOException; |
37 | void visit(AttitudeDataRequestFrame f) throws IOException; |
41 | void visit(AttitudeDataRequestFrame f) throws IOException; |