JSON Template to change frame period on PMP450 AP

Hello there! I’m trying to create a JSON template for cnMaestro to allow me to change the frame period on a PMP450 AP. The value 0 appears to be 2.5ms frames, and 1 appears to be 5ms frames. I think I have put together the right template and I can import it into cnMaestro without errors, but when I go to apply it to an AP, it doesn’t seem to do anything. What’s wrong with my script?

{
  "userParameters": {
    "radioConfig": {
      "framePeriod": 0
    }
  }
}

In any config file you still need to include:

{
    "cfgFileString": "Canopy configuration file",
    "cfgFileVersion": "1.0",
}

If you add that does it work?

Oh and Frame Period is under apRadioConfig

  "apRadioConfig": {
   "framePeriod": 1,
   }
2 Likes

apRadioConfig is what did the trick! I did not need to add the cfgFile lines. Thanks @Charlie !

2 Likes

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.