mwifi_write() -> CRC or checksum?
Posted: Thu Sep 12, 2019 3:02 pm
Hello Folks,
I'm still getting familiar to the MDF and couldn't find an answer to my simple question on hand:
When I'm sending using
and my root receives with
my question:
Is there a some kind of checksum matching or CRC baked into the mdf-process or should I implement my own?
I'm still getting familiar to the MDF and couldn't find an answer to my simple question on hand:
When I'm sending using
Code: Select all
ret = mwifi_write(NULL, &data_type, &data, MWIFI_DATA_IO_SIZE, true);
MDF_ERROR_CONTINUE(ret != MDF_OK, "mwifi_write, ret: %x", ret);
Code: Select all
ret = mwifi_root_read(src_addr, &data_type, data, &size, portMAX_DELAY);
MDF_ERROR_CONTINUE(ret != MDF_OK, "<%s> mwifi_root_read", mdf_err_to_name(ret));
my question:
Is there a some kind of checksum matching or CRC baked into the mdf-process or should I implement my own?