Rev 1543 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1542 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | public class CompassHeadingResponseFrame extends ResponseFrame { |
||
4 | public CompassHeadingResponseFrame(int address) { |
||
5 | super(address); |
||
6 | } |
||
7 | |||
8 | @Override |
||
9 | public boolean isResponseTo(RequestFrame r) { |
||
10 | return r instanceof CompassHeadingRequestFrame; |
||
11 | } |
||
12 | } |