MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / GetMaxAssociations

Method GetMaxAssociations

cpp/src/Manager.cpp:3832–3845  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Gets the maximum number of associations for a group -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

3830// Gets the maximum number of associations for a group
3831//-----------------------------------------------------------------------------
3832uint8 Manager::GetMaxAssociations
3833(
3834 uint32 const _homeId,
3835 uint8 const _nodeId,
3836 uint8 const _groupIdx
3837)
3838{
3839 if( Driver* driver = GetDriver( _homeId ) )
3840 {
3841 return driver->GetMaxAssociations( _nodeId, _groupIdx );
3842 }
3843
3844 return 0;
3845}
3846
3847//-----------------------------------------------------------------------------
3848// <Manager::IsMultiInstance>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected