Tool/software: Code Composer Studio
Hi,
I am doing light-weight Machine Learning with the MSP430FR5994 launchpad. I trained the model off-line and I need to upload the trained model data to the launchpad. I am using CCS to program the board. The trained model data should be saved in a float_point array which resides in FRAM. I used PERSISTENT to declare the variable.
#pragma LOCATION(model, 0x14800); #pragma PERSISTENT(model); float model[width][length] = {0};
How can I write pre-trained model data into this variable while I am programming the board with CCS?
Thanks,
Yubo