Added destructor that tri-states pins and ports
This commit is contained in:
parent
098fc43e98
commit
c73fbeea85
@ -182,7 +182,9 @@ InOutPin::InOutPin( InOut::Pin enmPin )
|
|||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
InOutPin::~InOutPin()
|
InOutPin::~InOutPin()
|
||||||
{}
|
{
|
||||||
|
setDirection( InOut::Dir::D_IN, false );
|
||||||
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
void InOutPin::setPin( InOut::Pin enmPin )
|
void InOutPin::setPin( InOut::Pin enmPin )
|
||||||
@ -210,7 +212,9 @@ InOutPort::InOutPort( InOut::Pin enmPin )
|
|||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
InOutPort::~InOutPort()
|
InOutPort::~InOutPort()
|
||||||
{}
|
{
|
||||||
|
setDirection( InOut::Dir::D_IN, false );
|
||||||
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
void InOutPort::setPort( InOut::Pin enmPortPin )
|
void InOutPort::setPort( InOut::Pin enmPortPin )
|
||||||
|
Loading…
Reference in New Issue
Block a user