diff --git a/website/docs/software/settings/gps.md b/website/docs/software/settings/gps.md
index 638915b0..45617e0b 100644
--- a/website/docs/software/settings/gps.md
+++ b/website/docs/software/settings/gps.md
@@ -35,7 +35,7 @@ If you wish to disable any GPS features, see below for more information.
### fixed_position
-If set, this node is at a fixed position. The device will generate GPS position updates at the regular `gps_update_interval`, but use whatever the last lat/lon/alt it saved for the node. The lat/lon/alt can be set by an internal GPS or with the help of the mobile device's GPS.
+If set, this node is at a fixed position. The device will generate GPS updates at the regular `gps_update_interval`, but use whatever the last lat/lon/alt it saved for the node. The lat/lon/alt can be set by an internal GPS or with the help of the mobile device's GPS.
### gps_attempt_time
@@ -79,6 +79,32 @@ The gps updates will be sent out every `position_broadcast_secs`, with either th
## Examples
+### Disable GPS Completely
+
+
+
+ ```bash title="Disable GPS Completely"
+ meshtastic --set gps_operation GpsOpDisabled
+ ```
+
+
+
+
+ TODO
+
+
+
+
+:::note
+`gps_operation GpsOpTimeOnly` is prefered to `gps_operation GpsOPDisabled` because it allows the device to get a highres time.
+:::
+
### Disable Location Sharing
- ```bash title="Disable GPS Completely"
- meshtastic --set gps_operation GpsOpDisabled
+ ```bash title="Set Fixed Position"
+ meshtastic --set fixed_position true
```
@@ -129,5 +154,53 @@ Disabling location sharing does not disable the GPS functionality, only the loca
:::note
-`gps_operation GpsOpTimeOnly` is prefered to `gps_operation GpsOPDisabled` because it allows the device to get a highres time.
+The device will continue to aquire GPS coordinates according to the `gps_update_interval`, but will use the last saved coordinates as its fixed point.
+:::
+
+### Set Fixed Position – Specify Lat/Lon
+
+
+
+ ```bash title="Set Fixed Position"
+ meshtastic --setlat 37.8651 --setlon -119.5383
+ ```
+
+
+
+
+ TODO
+
+
+
+
+### Unset Fixed Position
+
+
+
+ ```bash title="Unset Fixed Position"
+ meshtastic --set fixed_position false
+ ```
+
+
+
+
+ TODO
+
+
+
+
+:::note
+It may take some time to see that the change has taken effect. The GPS location is updated according to the value specified on `gps_update_interval` and the mesh will be notified of the new position in relation to the `position_broadcast_secs` value.
:::