Geting access to calibration data

Hello, I need to switch as rapidly as possible between two transmission standards (different sampling rate,… LO)…
Is there any manner to initially calibrate LimeSDR for the two standards and retrieving the calibration data in order to allow me to rapidly switch between the two standards by simply applying the previous saved calibration sets ?

e.g.
// Calibration phase start
SetStandardd1()
LMS_Calibrate()
Cal1 = LMS_GetCalibrationParam()

SetStandard2()
LMS_Calibrate()
Cal2 = LMS_GetCalibrationParam()
// Calibration phase end

//Transmit phase standard 1start
LMS_ApplyCalibration(Cal1)
TransmitStd1()
//Transmit phase standard 1end

//Transmit phase standard 2 start
LMS_ApplyCalibration(Cal2)
TransmitStd2()
//Transmit phase standard 2end

//Transmit phase standard 2 start

Thanks, Joel

Not sure if LimeUtil --cal and use of LMS_EnableCache will do what you need?