Hi Mich,
We don't have MSP430 hardware, could help with your error log to found the problem, still need yourself fix the issue.
The mismatch is about the library version to the config string version loaded.
So please remove load config string function and try with the lib again to see if lib is correct for integration. If so, the problem should be the config string.
From COINES example, the content of load_config funtion is null. So please try it.
uint32_t config_load(uint8_t *config_buffer, uint32_t n_buffer) { // ... // Load a library config from non-volatile memory, if available. // // Return zero if loading was unsuccessful or no config was available, // otherwise return length of loaded config string. // ... return 0; }
... View more