Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The SmartMesh network stack comes with Over-The-Air-Programming (OTAP) capability - the firmware you develop can leverage this capability. OTAP allows you to upgrade the firmware on a SmartMesh IP Mote in the network remotely, without needing physical access.

...

Tip

To speed up the transfer of the OTAP file from the onto the target device, you can switch the network to backbone mode (see SmartMesh IP User's Guide) by entering the following commands on the SmartMesh IP Manager, and then resetting it:

Code Block
> set config bbmode 2
> set config bbsize 2
Note

While backbone mode is useful for speeding up this hands-on test, it causes the network to consume significantly more energy, and should not be left on to speed up OTAP in a production network.

 

Modify the 02-gpio_net Sample Application

...

Code Block
   // CLI task
   cli_task_init(
      &gpio_net_app_v.cliContext,           // cliContext
      "gpio_net2",                          // appName
      &cliCmdDefs                           // cliCmds
   );

...

Compile the 02-gpio_net Sample Application

...