X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Finterfaces%2FBlockRead.nc;h=4f72c9981e1d1f904192c1ffbe407e5909231210;hb=4f057e14d46beedf64d643bebd06ca3e7e903d1f;hp=eebaa280c6fb80a5b0ed7b18d048122ba676520d;hpb=1ba974b83d19fc41bf80acd52726f36f7f1df297;p=tinyos-2.x.git diff --git a/tos/interfaces/BlockRead.nc b/tos/interfaces/BlockRead.nc index eebaa280..4f72c998 100644 --- a/tos/interfaces/BlockRead.nc +++ b/tos/interfaces/BlockRead.nc @@ -46,7 +46,7 @@ interface BlockRead { * operation. * * @param addr starting address to begin reading. - * @param buf buffer to place read data. + * @param 'void* COUNT(len) buf' buffer to place read data. * @param len number of bytes to read. * @return *
  • SUCCESS if the request was accepted, @@ -59,7 +59,7 @@ interface BlockRead { * Signals the completion of a read operation. * * @param addr starting address of read. - * @param buf buffer where read data was placed. + * @param 'void* COUNT(len) buf' buffer where read data was placed. * @param len number of bytes read. * @param error SUCCESS if the operation was successful, FAIL if * it failed @@ -67,27 +67,6 @@ interface BlockRead { event void readDone(storage_addr_t addr, void* buf, storage_len_t len, error_t error); - /** - * Initiate a verify operation to verify the integrity of the - * data. This operation is only valid after a commit operation from - * BlockWrite has been completed. On SUCCESS, the - * verifyDone event will signal completion of the - * operation. - * - * @return - *
  • SUCCESS if the request was accepted, - *
  • EBUSY if a request is already being processed. - */ - command error_t verify(); - - /** - * Signals the completion of a verify operation. - * - * @param error SUCCESS if the operation was successful, FAIL if - * it failed - */ - event void verifyDone(error_t error); - /** * Initiate a crc computation. On SUCCESS, the * computeCrcDone event will signal completion of the