NrfIdentifyCommand identifyCommand;
NrfIdentifyCommand *pIdentifyCommand = &identifyCommand;
int commandId = identifyCommand.GetCommandId(); // works
commandId = pIdentifyCommand->GetCommandId(); // FAILS (on Devboard going to Nirvana ...)
Why can't call method in 2nd case?