Changing frame period with cnMaestro

I am attempting to change all our AP's to a 2.5 ms Frame period from a 5 ms Frame.   I am using the following script but no changes are being made.    Do I need to add more information to the script?

{
"userParameters": {
"smRadioConfig": {
"framePeriod": 0,
"cfgFileString": "Canopy configuration file",

"cfgFileVersion": "1.0"

}
}
}

Try the below template.  It looks like the example above is for SM configuration.  The configuration setting for framePeriod for APs and SMs are within separate sub-objects.

{
	"userParameters": {
		"apRadioConfig": {
			"framePeriod": 0
		}
	}
}
1 Like

That did it, thanks for the help

1 Like