Rev 1564 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1540 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
1566 | - | 5 | import dongfang.mkt.RequestFrameVisitor; |
1540 | - | 6 | |
1566 | - | 7 | |
1540 | - | 8 | public class AttitudeDataRequestFrame extends RequestFrame { |
9 | private int autoSendInterval; |
||
10 | |||
11 | public AttitudeDataRequestFrame(int autoSendInterval) { |
||
12 | super(FC_ADDRESS); |
||
13 | this.autoSendInterval = autoSendInterval; |
||
14 | } |
||
15 | |||
16 | public void accept(RequestFrameVisitor o) throws IOException { |
||
17 | o.visit(this); |
||
18 | } |
||
19 | |||
20 | public int getAutoSendInterval() { |
||
21 | return autoSendInterval; |
||
22 | } |
||
23 | } |