mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-19 03:05:14 +00:00
initialize from int[] (mspsim standard)
This commit is contained in:
parent
9c51ece052
commit
9a76bacaa5
@ -26,7 +26,7 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: CC2420RadioPacket.java,v 1.1 2008/03/18 13:34:29 fros4943 Exp $
|
||||
* $Id: CC2420RadioPacket.java,v 1.2 2008/09/17 12:09:03 fros4943 Exp $
|
||||
*/
|
||||
|
||||
package se.sics.cooja.mspmote.interfaces;
|
||||
@ -39,6 +39,13 @@ public class CC2420RadioPacket implements RadioPacket {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public CC2420RadioPacket(int[] intData) {
|
||||
this.data = new byte[intData.length];
|
||||
for (int i=0; i < intData.length; i++) {
|
||||
this.data[i] = (byte) intData[i];
|
||||
}
|
||||
}
|
||||
|
||||
public byte[] getPacketData() {
|
||||
return data;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user