Rev 1540 | Go to most recent revision | 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 | |||
5 | |||
6 | public class AttitudeDataRequestFrame extends RequestFrame { |
||
7 | private int autoSendInterval; |
||
8 | |||
9 | public AttitudeDataRequestFrame(int autoSendInterval) { |
||
10 | super(FC_ADDRESS); |
||
11 | this.autoSendInterval = autoSendInterval; |
||
12 | } |
||
13 | |||
14 | public void accept(RequestFrameVisitor o) throws IOException { |
||
15 | o.visit(this); |
||
16 | } |
||
17 | |||
18 | public int getAutoSendInterval() { |
||
19 | return autoSendInterval; |
||
20 | } |
||
21 | } |