# G0 기본 급속 이송

## G0 — 빠른 이동

### 설명

**G0** 프로그래밍된 위치로 빠르고 비절삭 이동을 수행합니다. Community 펌웨어에서는 다음의 이송 속도는 **G0** 는 **G1**:

* **F** 의 **G0** 라인은 **해당 라인에만**. 이는 **않음** 이후의 모달 이송 속도를 업데이트하지 않습니다. **G1** / **G2** / **G3** 이동에서도 계속 켜져 있습니다.
* 만약 **G0** 가 발행될 때 **F 없이**, 이동은 **기본 탐색 속도** 구성의 값(`default_seek_rate`mm/min), **않음** 마지막 **G1** **F** 값을 사용합니다. 기본값은 **3000** mm/min입니다.

### 매개변수

* **X**, **Y**, **Z**, **A**, …: 활성 좌표계의 목표 위치(표준 G0와 동일).
* **F**: 다음에 대한 선택적 이송 속도 **이 G0 라인에만**

### 구성

* **`default_seek_rate`** — **G0** 일 때 사용하는 빠른 속도 **F** 가 생략되면. 다음과 같이 설정합니다: `config-set` 다른 기계 설정과 마찬가지로, 예를 들어:

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

### 예시

```gcode
G21 G94
G1 F600 Z5
G0 X50 Y30          ; 600 mm/min이 아니라 default_seek_rate로 빠르게 이동
G0 X0 Y0 F12000     ; 이 라인만 12000 mm/min을 사용
G1 Z-1 F300         ; 이송 속도는 300 mm/min이며, G0 F는 이어지지 않음
```

### 참고

* [Smoothieware G0 참고](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/ko/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.
