# Standard-Schnellfahrt von G0

## G0 — Schnellfahrt

### Beschreibung

**G0** führt eine schnelle, nicht schneidende Bewegung zur programmierten Position aus. In der Community-Firmware wird die Vorschubgeschwindigkeit für **G0** wird anders behandelt als **G1**:

* **F** bei einer **G0** Zeile gilt **nur für diese Zeile**. Es **nicht** aktualisiert nicht den modalen Vorschub, der von späteren **G1** / **G2** / **G3** Bewegungen aktiv.
* Wenn **G0** verwendet wird, wenn **ohne F**ausgeführt wird, verwendet die Bewegung den **Standard-Suchgeschwindigkeit** aus der Konfiguration (`default_seek_rate`, mm/min), **nicht** den letzten **G1** **F** Wert. Dies ist standardmäßig auf **3000** mm/min festgelegt.

### Parameter

* **X**, **Y**, **Z**, **A**, …: Zielposition im aktiven Koordinatensystem (wie bei standardmäßigem G0).
* **F**: optionale Vorschubgeschwindigkeit für **nur diese G0-Zeile**

### Konfiguration

* **`default_seek_rate`** — Schnellgeschwindigkeit, die für **G0** verwendet wird, wenn **F** weggelassen wird. Mit `config-set` festlegen, wie andere Maschineneinstellungen, zum Beispiel:

```
config-get sd default_seek_rate
config-set sd default_seek_rate 4000
```

### Beispiel

```gcode
G21 G94
G1 F600 Z5
G0 X50 Y30          ; schnell mit default_seek_rate, nicht 600 mm/min
G0 X0 Y0 F12000     ; diese Zeile verwendet nur 12000 mm/min
G1 Z-1 F300         ; Vorschub ist 300 mm/min; das G0 F wurde nicht übernommen
```

### Siehe auch

* [Smoothieware-G0-Referenz](https://smoothieware.org/g0)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://carvera-community.gitbook.io/docs/stable/de/firmware/supported-commands/gcodes/g0-default-rapid-feed.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
