|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectavrora.sim.mcu.ATMegaFamily.PinRegister
The PinRegister class implements an active register that acts as the
read register (input register) for the general purpose IO pins.
| Field Summary | |
protected AtmelMicrocontroller.Pin[] |
pins
|
| Constructor Summary | |
protected |
ATMegaFamily.PinRegister(AtmelMicrocontroller.Pin[] p)
|
| Method Summary | |
byte |
read()
The read() method reads the 8-bit value of the IO register as a byte. |
boolean |
readBit(int bit)
The readBit() method reads a single bit from the IO register. |
void |
write(byte val)
The write() method writes an 8-bit value to the IO register as a byte. |
void |
writeBit(int num,
boolean val)
The writeBit() method writes a single bit value into the IO register at the specified
bit offset. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected AtmelMicrocontroller.Pin[] pins
| Constructor Detail |
protected ATMegaFamily.PinRegister(AtmelMicrocontroller.Pin[] p)
| Method Detail |
public byte read()
ActiveRegisterread() method reads the 8-bit value of the IO register as a byte. For special IO
registers, this may cause some action like device activity, or the actual value of the register may
need to be fetched or computed.
read in interface ActiveRegisterpublic boolean readBit(int bit)
ActiveRegisterreadBit() method reads a single bit from the IO register.
readBit in interface ActiveRegisterbit - the number of the bit to read
public void write(byte val)
ActiveRegisterwrite() method writes an 8-bit value to the IO register as a byte. For special IO
registers, this may cause some action like device activity, masking/unmasking of interrupts, etc.
write in interface ActiveRegisterval - the value to write
public void writeBit(int num,
boolean val)
ActiveRegisterwriteBit() method writes a single bit value into the IO register at the specified
bit offset.
writeBit in interface ActiveRegisternum - the number of the bit to writeval - the value of the bit to write
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||