How can I write data to the mailbox via the iOS App?
After the last update the app is not crashing anymore, But how can I write data to it via the App. 
All toggles are not clickable. And the code example of the MX_NFC7_Process this function is completely empty.
I realized to read the status by copying the lines:
NFC07A1_NFCTAG_ReadMBCtrl_Dyn( NFC07A1_NFCTAG_INSTANCE,&mbctrldynstatus );
printf( "\n\r\n\rCtrl MB status register value:" );
printf( "\n\rHost(i2c) Missed Message = %d", mbctrldynstatus.HostMissMsg );
printf( "\n\rRF(reader) Missed Message = %d", mbctrldynstatus.RFMissMsg );
printf( "\n\rHost(i2c) Put Message = %d", mbctrldynstatus.HostPutMsg );
printf( "\n\rRF(reader) Put Message = %d", mbctrldynstatus.RfPutMsg );
printf( "\n\rMailbox Enable = %d", mbctrldynstatus.MbEnable );
And I can modify the MbEnable bool via the app but I would like to write a message via the app. Is there a way to do so. Kind regards,
