← Documents Documentation/hwmon/tmp103.rst GitHub 원문 ↗

Linux 6.18.37 · Hardware Monitoring

Kernel driver tmp103

TMP103 WCSP 센서의 8비트·1°C 해상도와 장치 생성 참조를 설명합니다.

Source pathDocumentation/hwmon/tmp103.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

tmp103.rst:1-33

TMP103은 4볼 WCSP의 8비트 디지털 온도 센서로 1°C 해상도와 -40~+125°C 동작 범위를 제공합니다.

문서 개요
항목
SourceDocumentation/hwmon/tmp103.rst
분량33 source lines
해상도1°C
범위-40~+125°C

원문 분량과 핵심 기능을 요약합니다.

동작 흐름
장치 생성드라이버 결합8비트 읽기온도 변환공통 temp ABI 제공

장치 초기화부터 측정값 제공까지의 핵심 순서입니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 Kernel driver tmp103
2 ====================
3
4 Supported chips:
5
6 * Texas Instruments TMP103
7
8 Prefix: 'tmp103'
9
10 Addresses scanned: none
11
12 Product info and datasheet: https://www.ti.com/product/tmp103
13
14 Author:
15
16 Heiko Schocher <[email protected]>
17
18 Description
19 -----------
20
21 The TMP103 is a digital output temperature sensor in a four-ball
22 wafer chip-scale package (WCSP). The TMP103 is capable of reading
23 temperatures to a resolution of 1°C. The TMP103 is specified for
24 operation over a temperature range of -40°C to +125°C.
25
26 Resolution: 8 Bits
27 Accuracy: ±1°C Typ (-10°C to +100°C)
28
29 The driver provides the common sysfs-interface for temperatures (see
30 Documentation/hwmon/sysfs-interface.rst under Temperatures).
31
32 Please refer how to instantiate this driver:
33 Documentation/i2c/instantiating-devices.rst
34

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

지원 칩과 작성자

1-17

`tmp103` 드라이버는 Texas Instruments TMP103을 지원하며 접두사는 `tmp103`입니다. 자동 주소 검색은 없고 제품 정보와 데이터시트는 TI 제품 페이지에서 제공합니다. 작성자는 Heiko Schocher입니다.

TMP103 식별 정보
접두사자동 검색
Texas Instruments TMP103tmp103없음

지원 부품과 장치 생성 특성입니다.

TMP103 연결
펌웨어에서 TMP103 기술I2C 장치 생성`tmp103` 드라이버 결합8비트 온도 센서 초기화공통 온도 속성 등록

명시적으로 생성한 I2C 장치가 hwmon으로 등록되는 흐름입니다.

Kernel driver tmp103
====================

Supported chips:

  * Texas Instruments TMP103

    Prefix: 'tmp103'

    Addresses scanned: none

    Product info and datasheet: https://www.ti.com/product/tmp103

Author:

        Heiko Schocher <[email protected]>

WCSP 온도 센서 특성

18-33

TMP103은 4볼 웨이퍼 칩 스케일 패키지(WCSP)의 디지털 출력 온도 센서입니다. 1°C 해상도로 온도를 읽으며 -40~+125°C 동작 범위로 규정됩니다.

해상도는 8비트이고 대표 정확도는 -10~+100°C에서 ±1°C입니다.

드라이버는 `Documentation/hwmon/sysfs-interface.rst`의 Temperatures 절에 정의된 공통 온도 sysfs 인터페이스를 제공합니다. 장치 생성 방법은 `Documentation/i2c/instantiating-devices.rst`를 참조하십시오.

TMP103 센서 특성
항목
패키지4볼 WCSP
출력디지털 온도
해상도8비트, 1°C
대표 정확도±1°C (-10~+100°C)
동작 범위-40~+125°C

패키지와 측정 성능을 정리했습니다.

TMP103 사용
I2C 장치 생성 방법 확인TMP103 인스턴스 생성디지털 온도 읽기1°C 단위로 해석공통 temp sysfs 속성 제공

장치 생성 문서와 공통 ABI를 연결한 흐름입니다.

Description
-----------

The TMP103 is a digital output temperature sensor in a four-ball
wafer chip-scale package (WCSP). The TMP103 is capable of reading
temperatures to a resolution of 1°C. The TMP103 is specified for
operation over a temperature range of -40°C to +125°C.

Resolution: 8 Bits
Accuracy: ±1°C Typ (-10°C to +100°C)

The driver provides the common sysfs-interface for temperatures (see
Documentation/hwmon/sysfs-interface.rst under Temperatures).

Please refer how to instantiate this driver:
Documentation/i2c/instantiating-devices.rst