[Tinyos-2-commits] CVS: tinyos-2.x/tos/system NoPinC.nc, NONE, 1.1.2.1

David Gay idgay at users.sourceforge.net
Mon May 1 10:19:10 PDT 2006


Update of /cvsroot/tinyos/tinyos-2.x/tos/system
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15380/tos/system

Added Files:
      Tag: tinyos-2_0_devel-BRANCH
	NoPinC.nc 
Log Message:
mica2dot fixes


--- NEW FILE: NoPinC.nc ---
/* $Id: NoPinC.nc,v 1.1.2.1 2006/05/01 17:19:08 idgay Exp $
 * Copyright (c) 2006 Intel Corporation
 * All rights reserved.
 *
 * This file is distributed under the terms in the attached INTEL-LICENSE     
 * file. If you do not find these files, copies can be found by writing to
 * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, 
 * 94704.  Attention:  Intel License Inquiry.
 */
/**
 * Dummy pin component.
 *
 * @author David Gay
 */

generic module NoPinC()
{
  provides interface GeneralIO;
}
implementation
{
  async command bool GeneralIO.get() { return 0; }
  async command void GeneralIO.set() { }
  async command void GeneralIO.clr() { }
  async command void GeneralIO.toggle() { }
  async command void GeneralIO.makeInput() { }
  async command void GeneralIO.makeOutput() { }
}




More information about the Tinyos-2-commits mailing list