요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
1
* Texas Instruments THS8200 video encoder
3
The ths8200 device is a digital to analog converter used in DVD players, video
4
recorders, set-top boxes.
6
Required Properties :
7
- compatible : value must be "ti,ths8200"
9
Example:
11
i2c0@1c22000 {
12
...
13
...
14
ths8200@5c {
15
compatible = "ti,ths8200";
16
reg = <0x5c>;
17
};
18
...
19
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
THS8200 video encoder
1-8Texas Instruments THS8200은 DVD player, video recorder, set-top box에 사용되는 digital-to-analog converter입니다. 필수 `compatible` 값은 `ti,ths8200`입니다.
Digital video input→THS8200
Digital-to-analog conversion→Analog video output
DVD / recorder / set-top box→사용 장치
Digital video를 장치 외부의 analog video 신호로 변환합니다.
I2C 주소 0x5c 예제
9-19예제는 I2C bus 아래 주소 `0x5c`에 `ti,ths8200` video encoder를 선언합니다.
i2c0@1c22000 {
...
...
ths8200@5c {
compatible = "ti,ths8200";
reg = <0x5c>;
};
...
};
요약과 해설
ti,ths8200.txt:1-19단일 compatible과 I2C encoder 예제를 설명합니다.