@@ -59,26 +59,29 @@ drive with the following file structure (/Documents/General/Releases/...)
59
59
:::note
60
60
61
61
If you are upgrading to version 2.1.0 from 2.0.x please also navigate to
62
- Documents/General/Releases/\< version\> (on the Sharepoint), download one
63
- of the following files and transfer it to the robot:
62
+ Documents/General/Releases/2.1 (on the cloud storage), download one
63
+ of the following files :
64
+
65
+ * ** outdoornav.yaml.amp** for standard AMP robots, or,
66
+
67
+ * ** outdoornav.yaml.observer** for Observer robots.
68
+
69
+ Transfer the file to the robot:
64
70
65
- * ** outdoornav.yaml.amp** for standard AMP robots,
66
71
67
72
``` code
68
- scp outdoornav.yaml [email protected] :/opt/onav/
73
+ scp outdoornav.yaml.amp [email protected] :/opt/onav/
69
74
```
70
75
71
- * ** outdoornav.yaml.observer** for Observer robots.
72
-
73
76
``` code
74
77
scp outdoornav.yaml.observer [email protected] :/opt/onav/
75
78
```
76
79
77
- Finally, navigate to the Documents/General/Releases/\< version \> (on the Sharepoint ),
80
+ Finally, navigate to the Documents/General/Releases/2.1 (on the cloud storage ),
78
81
download the update script and transfer it to the robot:
79
82
80
83
``` code
81
- scp update.py [email protected] :/opt/onav/2.0.0 /app/upgrade/
84
+ scp update.py [email protected] :/opt/onav/ros2 /app/upgrade/
82
85
```
83
86
:::
84
87
@@ -90,13 +93,13 @@ has been installed on the robot and ***\<new_version\>*** is the version you wan
90
93
to update to.
91
94
92
95
``` code
93
- python3 /opt/onav/<latest_version>/app/upgrade/update.py -v <new_version>
96
+ python3 /opt/onav/<latest_version>/app/upgrade/update.py -v <new_version> -c amp
94
97
```
95
98
96
99
Eg. To update from version 2.0.0 to version 2.1.0 run the following
97
100
98
101
``` code
99
- python3 /opt/onav/2.0.0 /app/upgrade/update.py -v 2.1.0
102
+ python3 /opt/onav/ros2 /app/upgrade/update.py -v 2.1.0 -c amp
100
103
```
101
104
102
105
* this will create a new version folder in /opt/onav/
@@ -114,7 +117,7 @@ to update to.
114
117
If you have an Observer model robot please use the following command to update
115
118
116
119
``` code
117
- python3 /opt/onav/<latest_version> /app/upgrade/update.py -v <new_version> -c observer
120
+ python3 /opt/onav/ros2 /app/upgrade/update.py -v <new_version> -c observer
118
121
```
119
122
120
123
:::
@@ -129,8 +132,24 @@ python3 /opt/onav/<latest_version>/app/upgrade/update.py -v <new_version> -c obs
129
132
130
133
:::note
131
134
135
+ If you have an standard AMP model robot please use the following command to finalize cleanup:
136
+
137
+ ``` code
138
+ rm /opt/onav/outdoornav.yaml.amp
139
+ ```
140
+
141
+ If you have an Observer model robot please use the following command to finalize cleanup:
142
+
143
+ ``` code
144
+ rm /opt/onav/outdoornav.yaml.observer
145
+ ```
146
+
147
+ :::
148
+
149
+ :::note
150
+
132
151
If you have made any customisation changes to the app/ directory of your
133
152
previous version, you will need to make these same modifications manually
134
- yourself to the new versions app/ directory files.
153
+ yourself to the new versions ** app/** directory files.
135
154
136
155
:::
0 commit comments