Skip to content

Commit 6acc599

Browse files
committed
Align commands with camel case <explanations>
1 parent 1d659fa commit 6acc599

File tree

1 file changed

+6
-6
lines changed
  • content/hardware/04.pro/boards/portenta-x8/tutorials/waves-fleet-managment

1 file changed

+6
-6
lines changed

content/hardware/04.pro/boards/portenta-x8/tutorials/waves-fleet-managment/content.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,17 @@ This creates a new targets.json file for production devices subscribing to the p
7474

7575
Now we can start creating our Wave. The command below will create a Wave that can then be pushed to our devices. To create a Wave, we will sign it with a key, here we will use the targets only key. Then we give the Wave a name, target number, and tag. The `target number` needs to correspond to the target that we want the Wave to contain for our devices. The `tag` can be set as production or development.
7676
```
77-
fioctl wave init -k /absolute/path/to/targets.only.key.tgz <wave-name> <target number> <tag>
77+
fioctl wave init -k /absolute/path/to/targets.only.key.tgz <waveName> <targetNumber> <tag>
7878
```
7979

8080
And then we can complete the Wave by passing the name to the "complete" function:
8181
```
82-
fioctl wave complete <wave-name>
82+
fioctl wave complete <waveName>
8383
```
8484

8585
Or we can cancel it with:
8686
```
87-
fioctl waves cancel <wave name>
87+
fioctl waves cancel <waveName>
8888
```
8989

9090
After creating the Wave, you should see it on your Factory page. It should also be marked as complete after you call the Wave complete command.
@@ -95,12 +95,12 @@ After creating the Wave, you should see it on your Factory page. It should also
9595

9696
With this command, we create our group, giving it a name and a short description:
9797
```
98-
fioctl config device-group create <group name> <"short description here">
98+
fioctl config device-group create <groupName> "<shortDescription>"
9999
```
100100

101101
Now to assign a device to our group we use:
102102
```
103-
fioctl device config group <device name> <group name>
103+
fioctl device config group <deviceName> <groupName>
104104
```
105105

106106
On your FoundriesFactory device page you can sort and view devices by group.
@@ -109,7 +109,7 @@ On your FoundriesFactory device page you can sort and view devices by group.
109109

110110
To rollout our Wave to our device group, use:
111111
```
112-
fioctl waves rollout <wave name> <device group name>
112+
fioctl waves rollout <waveName> <deviceGroupName>
113113
```
114114

115115
Every device in the device group should now have the target specified in the Wave creation.

0 commit comments

Comments
 (0)