avrora.sim.mcu
Class Microcontroller.InputPin

java.lang.Object
  extended byavrora.sim.mcu.Microcontroller.InputPin
All Implemented Interfaces:
Microcontroller.Pin.Input
Direct Known Subclasses:
CC1000Radio.SerialConfigurationInterface.PDATAInput, ExternalFlash.PD2Input
Enclosing class:
Microcontroller

public abstract static class Microcontroller.InputPin
extends java.lang.Object
implements Microcontroller.Pin.Input


Constructor Summary
Microcontroller.InputPin()
           
 
Method Summary
 void disableInput()
          The disableInput() method is called by the simulator when the program changes the direction of the pin.
 void enableInput()
          The enableInput() method is called by the simulator when the program changes the direction of the pin.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface avrora.sim.mcu.Microcontroller.Pin.Input
read
 

Constructor Detail

Microcontroller.InputPin

public Microcontroller.InputPin()
Method Detail

enableInput

public void enableInput()
Description copied from interface: Microcontroller.Pin.Input
The enableInput() method is called by the simulator when the program changes the direction of the pin. The device connected to this pin can then take action accordingly.

Specified by:
enableInput in interface Microcontroller.Pin.Input

disableInput

public void disableInput()
Description copied from interface: Microcontroller.Pin.Input
The disableInput() method is called by the simulator when the program changes the direction of the pin. The device connected to this pin can then take action accordingly.

Specified by:
disableInput in interface Microcontroller.Pin.Input