[Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/net/zigbee/ieee802154/interfaces/phy PD_DATA.nc, NONE, 1.1 PLME_CCA.nc, NONE, 1.1 PLME_ED.nc, NONE, 1.1 PLME_GET.nc, NONE, 1.1 PLME_SET.nc, NONE, 1.1 PLME_SET_TRX_STATE.nc, NONE, 1.1

André Cunha a_cunha at users.sourceforge.net
Mon Feb 11 09:50:48 PST 2008


Update of /cvsroot/tinyos/tinyos-2.x/tos/lib/net/zigbee/ieee802154/interfaces/phy
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv30043/phy

Added Files:
	PD_DATA.nc PLME_CCA.nc PLME_ED.nc PLME_GET.nc PLME_SET.nc 
	PLME_SET_TRX_STATE.nc 
Log Message:


--- NEW FILE: PD_DATA.nc ---
/**
 * PD-Service Access Point
 * @author IPP HURRAY http://www.hurray.isep.ipp.pt/art-wise
 * @author http://www.open-zb.net
 * @author Andre Cunha
 *
 *
 */
//#include <phy_enumerations.h>

interface PD_DATA
{ 
  async command error_t request(uint8_t psduLenght, uint8_t* psdu);
  
  async event error_t confirm(uint8_t status);
  
  async event error_t indication(uint8_t psduLenght,uint8_t* psdu, int8_t ppduLinkQuality);
 
}

--- NEW FILE: PLME_CCA.nc ---
/**
 * Physical Layer Management Entity-Service Access Point
 * PLME-SAP - PLME-CCA
 * @author IPP HURRAY http://www.hurray.isep.ipp.pt/art-wise
 * @author Andre Cunha
 *
 */

interface PLME_CCA
{ 
/*PLME_CCA*/

  command error_t request();

  event error_t confirm(uint8_t status);

}

--- NEW FILE: PLME_ED.nc ---
/**
 * Physical Layer Management Entity-Service Access Point
 * PLME-SAP - PLME-ED
 * @author IPP HURRAY http://www.hurray.isep.ipp.pt/art-wise
 * @author Andre Cunha
 */

interface PLME_ED
{ 
/*PLME_ED*/

  command error_t request();

  event error_t confirm(uint8_t status,int8_t EnergyLevel);

}

--- NEW FILE: PLME_GET.nc ---
/**
 * Physical Layer Management Entity-Service Access Point
 * PLME-SAP - PLME-GET
 * @author IPP HURRAY http://www.hurray.isep.ipp.pt/art-wise
 * @author Andre Cunha
 *
 *
 */

interface PLME_GET
{ 
/*PLME_GET*/

  command error_t request(uint8_t PIBAttribute);

  event error_t confirm(uint8_t status, uint8_t PIBAttribute, uint8_t PIBAttributeValue);

}

--- NEW FILE: PLME_SET.nc ---
/**
 * Physical Layer Management Entity-Service Access Point
 * PLME-SAP - PLME-SET
 * @author IPP HURRAY http://www.hurray.isep.ipp.pt/art-wise
 * @author Andre Cunha
 *
 *
 */

interface PLME_SET
{ 
/*PLME_SET*/

  command error_t request(uint8_t PIBAttribute, uint8_t PIBAttributeValue);

  event error_t confirm(uint8_t status, uint8_t PIBAttribute);

}

--- NEW FILE: PLME_SET_TRX_STATE.nc ---
/**
 * Physical Layer Management Entity-Service Access Point
 * PLME-SAP - PLME-SET_TRX_STATE
 *
 * @author IPP HURRAY http://www.hurray.isep.ipp.pt/art-wise
 * @author Andre Cunha
 *
 */

interface PLME_SET_TRX_STATE
{ 
/*PLME_SET_TRX_STATE*/

  async command error_t request(uint8_t state);

  async event error_t confirm(uint8_t status);

}



More information about the Tinyos-2-commits mailing list