[Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/messages
BlackbookFileMsg.java, 1.1, 1.2 BlackbookSectorMsg.class, 1.1,
1.2 BlackbookFileMsg.class, 1.1, 1.2 BlackbookNodeMsg.class,
1.1, 1.2 BlackbookSectorMsg.java, 1.1,
1.2 BlackbookNodeMsg.java, 1.1, 1.2
dmm
rincon at users.sourceforge.net
Tue Jun 6 09:51:03 PDT 2006
- Previous message: [Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/bfilewrite
BFileWrite.class, 1.1, 1.2 BFileWrite.java, 1.1, 1.2
- Next message: [Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/apps/Blackbook5/core
NodeMapC.nc, 1.1, 1.2 BCleanC.nc, 1.1, 1.2 SectorMapM.nc, 1.1,
1.2 BFileDeleteM.nc, 1.1, 1.2 WriteAllocM.nc, 1.1,
1.2 BFileDirC.nc, 1.1, 1.2 FileioC.nc, 1.1, 1.2 Blackbook.h,
1.1, 1.2 WriteAllocC.nc, 1.1, 1.2 NodeMapM.nc, 1.1,
1.2 FileioM.nc, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/tinyos/tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/messages
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv28804/contrib/rincon/tools/java/com/rincon/blackbook/messages
Modified Files:
BlackbookFileMsg.java BlackbookSectorMsg.class
BlackbookFileMsg.class BlackbookNodeMsg.class
BlackbookSectorMsg.java BlackbookNodeMsg.java
Log Message:
Updated Blackbook to v.5.1, fixed many bugs and increased reliability
Index: BlackbookFileMsg.java
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/messages/BlackbookFileMsg.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** BlackbookFileMsg.java 20 Apr 2006 23:02:52 -0000 1.1
--- BlackbookFileMsg.java 6 Jun 2006 16:50:29 -0000 1.2
***************
*** 10,19 ****
/** The default size of this message type in bytes. */
! public static final int DEFAULT_MESSAGE_SIZE = 20;
/** The Active Message type associated with this message. */
public static final int AM_TYPE = 189;
! /** Create a new BlackbookFileMsg of size 20. */
public BlackbookFileMsg() {
super(DEFAULT_MESSAGE_SIZE);
--- 10,19 ----
/** The default size of this message type in bytes. */
! public static final int DEFAULT_MESSAGE_SIZE = 5;
/** The Active Message type associated with this message. */
public static final int AM_TYPE = 189;
! /** Create a new BlackbookFileMsg of size 5. */
public BlackbookFileMsg() {
super(DEFAULT_MESSAGE_SIZE);
***************
*** 96,109 ****
s += " [focusedFile.state=0x"+Long.toHexString(get_focusedFile_state())+"]\n";
} catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
- try {
- s += " [focusedFile.type=0x"+Long.toHexString(get_focusedFile_type())+"]\n";
- } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
- try {
- s += " [focusedFile.name.getName=";
- for (int i = 0; i < 14; i++) {
- s += "0x"+Long.toHexString(getElement_focusedFile_name_getName(i) & 0xff)+" ";
- }
- s += "]\n";
- } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
return s;
}
--- 96,99 ----
***************
*** 300,518 ****
}
- /////////////////////////////////////////////////////////
- // Accessor methods for field: focusedFile.type
- // Field type: short
- // Offset (bits): 40
- // Size (bits): 8
- /////////////////////////////////////////////////////////
-
- /**
- * Return whether the field 'focusedFile.type' is signed (false).
- */
- public static boolean isSigned_focusedFile_type() {
- return false;
- }
-
- /**
- * Return whether the field 'focusedFile.type' is an array (false).
- */
- public static boolean isArray_focusedFile_type() {
- return false;
- }
-
- /**
- * Return the offset (in bytes) of the field 'focusedFile.type'
- */
- public static int offset_focusedFile_type() {
- return (40 / 8);
- }
-
- /**
- * Return the offset (in bits) of the field 'focusedFile.type'
- */
- public static int offsetBits_focusedFile_type() {
- return 40;
- }
-
- /**
- * Return the value (as a short) of the field 'focusedFile.type'
- */
- public short get_focusedFile_type() {
- return (short)getUIntElement(offsetBits_focusedFile_type(), 8);
- }
-
- /**
- * Set the value of the field 'focusedFile.type'
- */
- public void set_focusedFile_type(short value) {
- setUIntElement(offsetBits_focusedFile_type(), 8, value);
- }
-
- /**
- * Return the size, in bytes, of the field 'focusedFile.type'
- */
- public static int size_focusedFile_type() {
- return (8 / 8);
- }
-
- /**
- * Return the size, in bits, of the field 'focusedFile.type'
- */
- public static int sizeBits_focusedFile_type() {
- return 8;
- }
-
- /////////////////////////////////////////////////////////
- // Accessor methods for field: focusedFile.name.getName
- // Field type: byte[]
- // Offset (bits): 48
- // Size of each element (bits): 8
- /////////////////////////////////////////////////////////
-
- /**
- * Return whether the field 'focusedFile.name.getName' is signed (false).
- */
- public static boolean isSigned_focusedFile_name_getName() {
- return false;
- }
-
- /**
- * Return whether the field 'focusedFile.name.getName' is an array (true).
- */
- public static boolean isArray_focusedFile_name_getName() {
- return true;
- }
-
- /**
- * Return the offset (in bytes) of the field 'focusedFile.name.getName'
- */
- public static int offset_focusedFile_name_getName(int index1) {
- int offset = 48;
- if (index1 < 0 || index1 >= 14) throw new ArrayIndexOutOfBoundsException();
- offset += 0 + index1 * 8;
- return (offset / 8);
- }
-
- /**
- * Return the offset (in bits) of the field 'focusedFile.name.getName'
- */
- public static int offsetBits_focusedFile_name_getName(int index1) {
- int offset = 48;
- if (index1 < 0 || index1 >= 14) throw new ArrayIndexOutOfBoundsException();
- offset += 0 + index1 * 8;
- return offset;
- }
-
- /**
- * Return the entire array 'focusedFile.name.getName' as a byte[]
- */
- public byte[] get_focusedFile_name_getName() {
- byte[] tmp = new byte[14];
- for (int index0 = 0; index0 < numElements_focusedFile_name_getName(0); index0++) {
- tmp[index0] = getElement_focusedFile_name_getName(index0);
- }
- return tmp;
- }
-
- /**
- * Set the contents of the array 'focusedFile.name.getName' from the given byte[]
- */
- public void set_focusedFile_name_getName(byte[] value) {
- for (int index0 = 0; index0 < value.length; index0++) {
- setElement_focusedFile_name_getName(index0, value[index0]);
- }
- }
-
- /**
- * Return an element (as a byte) of the array 'focusedFile.name.getName'
- */
- public byte getElement_focusedFile_name_getName(int index1) {
- return (byte)getSIntElement(offsetBits_focusedFile_name_getName(index1), 8);
- }
-
- /**
- * Set an element of the array 'focusedFile.name.getName'
- */
- public void setElement_focusedFile_name_getName(int index1, byte value) {
- setSIntElement(offsetBits_focusedFile_name_getName(index1), 8, value);
- }
-
- /**
- * Return the total size, in bytes, of the array 'focusedFile.name.getName'
- */
- public static int totalSize_focusedFile_name_getName() {
- return (112 / 8);
- }
-
- /**
- * Return the total size, in bits, of the array 'focusedFile.name.getName'
- */
- public static int totalSizeBits_focusedFile_name_getName() {
- return 112;
- }
-
- /**
- * Return the size, in bytes, of each element of the array 'focusedFile.name.getName'
- */
- public static int elementSize_focusedFile_name_getName() {
- return (8 / 8);
- }
-
- /**
- * Return the size, in bits, of each element of the array 'focusedFile.name.getName'
- */
- public static int elementSizeBits_focusedFile_name_getName() {
- return 8;
- }
-
- /**
- * Return the number of dimensions in the array 'focusedFile.name.getName'
- */
- public static int numDimensions_focusedFile_name_getName() {
- return 1;
- }
-
- /**
- * Return the number of elements in the array 'focusedFile.name.getName'
- */
- public static int numElements_focusedFile_name_getName() {
- return 14;
- }
-
- /**
- * Return the number of elements in the array 'focusedFile.name.getName'
- * for the given dimension.
- */
- public static int numElements_focusedFile_name_getName(int dimension) {
- int array_dims[] = { 14, };
- if (dimension < 0 || dimension >= 1) throw new ArrayIndexOutOfBoundsException();
- if (array_dims[dimension] == 0) throw new IllegalArgumentException("Array dimension "+dimension+" has unknown size");
- return array_dims[dimension];
- }
-
- /**
- * Fill in the array 'focusedFile.name.getName' with a String
- */
- public void setString_focusedFile_name_getName(String s) {
- int len = s.length();
- int i;
- for (i = 0; i < len; i++) {
- setElement_focusedFile_name_getName(i, (byte)s.charAt(i));
- }
- setElement_focusedFile_name_getName(i, (byte)0); //null terminate
- }
-
- /**
- * Read the array 'focusedFile.name.getName' as a String
- */
- public String getString_focusedFile_name_getName() {
- char carr[] = new char[Math.min(net.tinyos.message.Message.MAX_CONVERTED_STRING_LENGTH,14)];
- int i;
- for (i = 0; i < carr.length; i++) {
- if ((char)getElement_focusedFile_name_getName(i) == (char)0) break;
- carr[i] = (char)getElement_focusedFile_name_getName(i);
- }
- return new String(carr,0,i);
- }
-
}
--- 290,292 ----
Index: BlackbookSectorMsg.class
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/messages/BlackbookSectorMsg.class,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
Binary files /tmp/cvsiStUaX and /tmp/cvs3CjyCu differ
Index: BlackbookFileMsg.class
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/messages/BlackbookFileMsg.class,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
Binary files /tmp/cvscYj0z4 and /tmp/cvsRiiveC differ
Index: BlackbookNodeMsg.class
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/messages/BlackbookNodeMsg.class,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
Binary files /tmp/cvsmAGiWa and /tmp/cvsBU7hQI differ
Index: BlackbookSectorMsg.java
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/messages/BlackbookSectorMsg.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** BlackbookSectorMsg.java 20 Apr 2006 23:02:52 -0000 1.1
--- BlackbookSectorMsg.java 6 Jun 2006 16:50:29 -0000 1.2
***************
*** 10,19 ****
/** The default size of this message type in bytes. */
! public static final int DEFAULT_MESSAGE_SIZE = 7;
/** The Active Message type associated with this message. */
public static final int AM_TYPE = 190;
! /** Create a new BlackbookSectorMsg of size 7. */
public BlackbookSectorMsg() {
super(DEFAULT_MESSAGE_SIZE);
--- 10,19 ----
/** The default size of this message type in bytes. */
! public static final int DEFAULT_MESSAGE_SIZE = 5;
/** The Active Message type associated with this message. */
public static final int AM_TYPE = 190;
! /** Create a new BlackbookSectorMsg of size 5. */
public BlackbookSectorMsg() {
super(DEFAULT_MESSAGE_SIZE);
***************
*** 88,94 ****
String s = "Message <BlackbookSectorMsg> \n";
try {
- s += " [focusedSector.totalUnfinalizedNodes=0x"+Long.toHexString(get_focusedSector_totalUnfinalizedNodes())+"]\n";
- } catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
- try {
s += " [focusedSector.writePage=0x"+Long.toHexString(get_focusedSector_writePage())+"]\n";
} catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
--- 88,91 ----
***************
*** 108,177 ****
/////////////////////////////////////////////////////////
- // Accessor methods for field: focusedSector.totalUnfinalizedNodes
- // Field type: int
- // Offset (bits): 0
- // Size (bits): 16
- /////////////////////////////////////////////////////////
-
- /**
- * Return whether the field 'focusedSector.totalUnfinalizedNodes' is signed (false).
- */
- public static boolean isSigned_focusedSector_totalUnfinalizedNodes() {
- return false;
- }
-
- /**
- * Return whether the field 'focusedSector.totalUnfinalizedNodes' is an array (false).
- */
- public static boolean isArray_focusedSector_totalUnfinalizedNodes() {
- return false;
- }
-
- /**
- * Return the offset (in bytes) of the field 'focusedSector.totalUnfinalizedNodes'
- */
- public static int offset_focusedSector_totalUnfinalizedNodes() {
- return (0 / 8);
- }
-
- /**
- * Return the offset (in bits) of the field 'focusedSector.totalUnfinalizedNodes'
- */
- public static int offsetBits_focusedSector_totalUnfinalizedNodes() {
- return 0;
- }
-
- /**
- * Return the value (as a int) of the field 'focusedSector.totalUnfinalizedNodes'
- */
- public int get_focusedSector_totalUnfinalizedNodes() {
- return (int)getUIntElement(offsetBits_focusedSector_totalUnfinalizedNodes(), 16);
- }
-
- /**
- * Set the value of the field 'focusedSector.totalUnfinalizedNodes'
- */
- public void set_focusedSector_totalUnfinalizedNodes(int value) {
- setUIntElement(offsetBits_focusedSector_totalUnfinalizedNodes(), 16, value);
- }
-
- /**
- * Return the size, in bytes, of the field 'focusedSector.totalUnfinalizedNodes'
- */
- public static int size_focusedSector_totalUnfinalizedNodes() {
- return (16 / 8);
- }
-
- /**
- * Return the size, in bits, of the field 'focusedSector.totalUnfinalizedNodes'
- */
- public static int sizeBits_focusedSector_totalUnfinalizedNodes() {
- return 16;
- }
-
- /////////////////////////////////////////////////////////
// Accessor methods for field: focusedSector.writePage
// Field type: int
! // Offset (bits): 16
// Size (bits): 16
/////////////////////////////////////////////////////////
--- 105,111 ----
/////////////////////////////////////////////////////////
// Accessor methods for field: focusedSector.writePage
// Field type: int
! // Offset (bits): 0
// Size (bits): 16
/////////////////////////////////////////////////////////
***************
*** 195,199 ****
*/
public static int offset_focusedSector_writePage() {
! return (16 / 8);
}
--- 129,133 ----
*/
public static int offset_focusedSector_writePage() {
! return (0 / 8);
}
***************
*** 202,206 ****
*/
public static int offsetBits_focusedSector_writePage() {
! return 16;
}
--- 136,140 ----
*/
public static int offsetBits_focusedSector_writePage() {
! return 0;
}
***************
*** 236,240 ****
// Accessor methods for field: focusedSector.totalNodes
// Field type: short
! // Offset (bits): 32
// Size (bits): 8
/////////////////////////////////////////////////////////
--- 170,174 ----
// Accessor methods for field: focusedSector.totalNodes
// Field type: short
! // Offset (bits): 16
// Size (bits): 8
/////////////////////////////////////////////////////////
***************
*** 258,262 ****
*/
public static int offset_focusedSector_totalNodes() {
! return (32 / 8);
}
--- 192,196 ----
*/
public static int offset_focusedSector_totalNodes() {
! return (16 / 8);
}
***************
*** 265,269 ****
*/
public static int offsetBits_focusedSector_totalNodes() {
! return 32;
}
--- 199,203 ----
*/
public static int offsetBits_focusedSector_totalNodes() {
! return 16;
}
***************
*** 299,303 ****
// Accessor methods for field: focusedSector.index
// Field type: short
! // Offset (bits): 40
// Size (bits): 8
/////////////////////////////////////////////////////////
--- 233,237 ----
// Accessor methods for field: focusedSector.index
// Field type: short
! // Offset (bits): 24
// Size (bits): 8
/////////////////////////////////////////////////////////
***************
*** 321,325 ****
*/
public static int offset_focusedSector_index() {
! return (40 / 8);
}
--- 255,259 ----
*/
public static int offset_focusedSector_index() {
! return (24 / 8);
}
***************
*** 328,332 ****
*/
public static int offsetBits_focusedSector_index() {
! return 40;
}
--- 262,266 ----
*/
public static int offsetBits_focusedSector_index() {
! return 24;
}
***************
*** 362,366 ****
// Accessor methods for field: focusedSector.inUse
// Field type: short
! // Offset (bits): 48
// Size (bits): 8
/////////////////////////////////////////////////////////
--- 296,300 ----
// Accessor methods for field: focusedSector.inUse
// Field type: short
! // Offset (bits): 32
// Size (bits): 8
/////////////////////////////////////////////////////////
***************
*** 384,388 ****
*/
public static int offset_focusedSector_inUse() {
! return (48 / 8);
}
--- 318,322 ----
*/
public static int offset_focusedSector_inUse() {
! return (32 / 8);
}
***************
*** 391,395 ****
*/
public static int offsetBits_focusedSector_inUse() {
! return 48;
}
--- 325,329 ----
*/
public static int offsetBits_focusedSector_inUse() {
! return 32;
}
Index: BlackbookNodeMsg.java
===================================================================
RCS file: /cvsroot/tinyos/tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/messages/BlackbookNodeMsg.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** BlackbookNodeMsg.java 20 Apr 2006 23:02:52 -0000 1.1
--- BlackbookNodeMsg.java 6 Jun 2006 16:50:29 -0000 1.2
***************
*** 10,19 ****
/** The default size of this message type in bytes. */
! public static final int DEFAULT_MESSAGE_SIZE = 16;
/** The Active Message type associated with this message. */
public static final int AM_TYPE = 188;
! /** Create a new BlackbookNodeMsg of size 16. */
public BlackbookNodeMsg() {
super(DEFAULT_MESSAGE_SIZE);
--- 10,19 ----
/** The default size of this message type in bytes. */
! public static final int DEFAULT_MESSAGE_SIZE = 18;
/** The Active Message type associated with this message. */
public static final int AM_TYPE = 188;
! /** Create a new BlackbookNodeMsg of size 18. */
public BlackbookNodeMsg() {
super(DEFAULT_MESSAGE_SIZE);
***************
*** 307,313 ****
/////////////////////////////////////////////////////////
// Accessor methods for field: focusedNode.reserveLength
! // Field type: int
// Offset (bits): 64
! // Size (bits): 16
/////////////////////////////////////////////////////////
--- 307,313 ----
/////////////////////////////////////////////////////////
// Accessor methods for field: focusedNode.reserveLength
! // Field type: long
// Offset (bits): 64
! // Size (bits): 32
/////////////////////////////////////////////////////////
***************
*** 341,348 ****
/**
! * Return the value (as a int) of the field 'focusedNode.reserveLength'
*/
! public int get_focusedNode_reserveLength() {
! return (int)getUIntElement(offsetBits_focusedNode_reserveLength(), 16);
}
--- 341,348 ----
/**
! * Return the value (as a long) of the field 'focusedNode.reserveLength'
*/
! public long get_focusedNode_reserveLength() {
! return (long)getUIntElement(offsetBits_focusedNode_reserveLength(), 32);
}
***************
*** 350,355 ****
* Set the value of the field 'focusedNode.reserveLength'
*/
! public void set_focusedNode_reserveLength(int value) {
! setUIntElement(offsetBits_focusedNode_reserveLength(), 16, value);
}
--- 350,355 ----
* Set the value of the field 'focusedNode.reserveLength'
*/
! public void set_focusedNode_reserveLength(long value) {
! setUIntElement(offsetBits_focusedNode_reserveLength(), 32, value);
}
***************
*** 358,362 ****
*/
public static int size_focusedNode_reserveLength() {
! return (16 / 8);
}
--- 358,362 ----
*/
public static int size_focusedNode_reserveLength() {
! return (32 / 8);
}
***************
*** 365,369 ****
*/
public static int sizeBits_focusedNode_reserveLength() {
! return 16;
}
--- 365,369 ----
*/
public static int sizeBits_focusedNode_reserveLength() {
! return 32;
}
***************
*** 371,375 ****
// Accessor methods for field: focusedNode.dataCrc
// Field type: int
! // Offset (bits): 80
// Size (bits): 16
/////////////////////////////////////////////////////////
--- 371,375 ----
// Accessor methods for field: focusedNode.dataCrc
// Field type: int
! // Offset (bits): 96
// Size (bits): 16
/////////////////////////////////////////////////////////
***************
*** 393,397 ****
*/
public static int offset_focusedNode_dataCrc() {
! return (80 / 8);
}
--- 393,397 ----
*/
public static int offset_focusedNode_dataCrc() {
! return (96 / 8);
}
***************
*** 400,404 ****
*/
public static int offsetBits_focusedNode_dataCrc() {
! return 80;
}
--- 400,404 ----
*/
public static int offsetBits_focusedNode_dataCrc() {
! return 96;
}
***************
*** 434,438 ****
// Accessor methods for field: focusedNode.filenameCrc
// Field type: int
! // Offset (bits): 96
// Size (bits): 16
/////////////////////////////////////////////////////////
--- 434,438 ----
// Accessor methods for field: focusedNode.filenameCrc
// Field type: int
! // Offset (bits): 112
// Size (bits): 16
/////////////////////////////////////////////////////////
***************
*** 456,460 ****
*/
public static int offset_focusedNode_filenameCrc() {
! return (96 / 8);
}
--- 456,460 ----
*/
public static int offset_focusedNode_filenameCrc() {
! return (112 / 8);
}
***************
*** 463,467 ****
*/
public static int offsetBits_focusedNode_filenameCrc() {
! return 96;
}
--- 463,467 ----
*/
public static int offsetBits_focusedNode_filenameCrc() {
! return 112;
}
***************
*** 497,501 ****
// Accessor methods for field: focusedNode.state
// Field type: short
! // Offset (bits): 112
// Size (bits): 8
/////////////////////////////////////////////////////////
--- 497,501 ----
// Accessor methods for field: focusedNode.state
// Field type: short
! // Offset (bits): 128
// Size (bits): 8
/////////////////////////////////////////////////////////
***************
*** 519,523 ****
*/
public static int offset_focusedNode_state() {
! return (112 / 8);
}
--- 519,523 ----
*/
public static int offset_focusedNode_state() {
! return (128 / 8);
}
***************
*** 526,530 ****
*/
public static int offsetBits_focusedNode_state() {
! return 112;
}
--- 526,530 ----
*/
public static int offsetBits_focusedNode_state() {
! return 128;
}
***************
*** 560,564 ****
// Accessor methods for field: focusedNode.fileElement
// Field type: short
! // Offset (bits): 120
// Size (bits): 8
/////////////////////////////////////////////////////////
--- 560,564 ----
// Accessor methods for field: focusedNode.fileElement
// Field type: short
! // Offset (bits): 136
// Size (bits): 8
/////////////////////////////////////////////////////////
***************
*** 582,586 ****
*/
public static int offset_focusedNode_fileElement() {
! return (120 / 8);
}
--- 582,586 ----
*/
public static int offset_focusedNode_fileElement() {
! return (136 / 8);
}
***************
*** 589,593 ****
*/
public static int offsetBits_focusedNode_fileElement() {
! return 120;
}
--- 589,593 ----
*/
public static int offsetBits_focusedNode_fileElement() {
! return 136;
}
- Previous message: [Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/tools/java/com/rincon/blackbook/bfilewrite
BFileWrite.class, 1.1, 1.2 BFileWrite.java, 1.1, 1.2
- Next message: [Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/apps/Blackbook5/core
NodeMapC.nc, 1.1, 1.2 BCleanC.nc, 1.1, 1.2 SectorMapM.nc, 1.1,
1.2 BFileDeleteM.nc, 1.1, 1.2 WriteAllocM.nc, 1.1,
1.2 BFileDirC.nc, 1.1, 1.2 FileioC.nc, 1.1, 1.2 Blackbook.h,
1.1, 1.2 WriteAllocC.nc, 1.1, 1.2 NodeMapM.nc, 1.1,
1.2 FileioM.nc, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Tinyos-contrib-commits
mailing list