전자부품 데이터시트 검색엔진
  Korean  ▼
ALLDATASHEET.CO.KR

X  

  • M24C01-RDS6TP

  • AI
    ## Technical Overview of M24C01-RDS6TP The **M24C01-RDS6TP** is a 1-Kbit serial I²C (Inter-Integrated Circuit) EEPROM manufactured by **STMicroelectronics**. It is designed for low-power, low-voltage applications where data persistence is required without a continuous power supply. --- ### 1. Key Technical Specifications | Feature | Specification | | :--- | :--- | | **Memory Size** | 1 Kbit (128 bytes x 8 bits) | | **Interface** | I²C Serial (2-wire) | | **Supply Voltage (Vcc)** | 1.8V to 5.5V | | **Clock Frequency** | 400 kHz (Fast Mode) | | **Package Type** | TSSOP8 (Thin Shrink Small Outline Package) | | **Temperature Range** | -40°C to +85°C (Industrial Grade) | | **Endurance** | 4 million write cycles | | **Data Retention** | 200 years | --- ### 2. Pin Configuration (TSSOP8) The device typically uses an 8-pin layout. Below is the functional description for each pin: | Pin Number | Name | Function | Description | | :--- | :--- | :--- | :--- | | 1-3 | E0, E1, E2 | Chip Enable | Used to define the device's I²C address. | | 4 | VSS | Ground | 0V Power supply connection. | | 5 | SDA | Serial Data | Bidirectional pin used to transfer data. | | 6 | SCL | Serial Clock | Input for clock synchronization. | | 7 | WC | Write Control | Write Protect; if HIGH, write operations are inhibited. | | 8 | VCC | Supply Voltage | Power supply (1.8V - 5.5V). | --- ### 3. Core Functional Components #### A. Memory Array The 1-Kbit memory is organized as **128 bytes of 8 bits each**. It is non-volatile, meaning it retains information even when the power is disconnected. #### B. I²C Protocol Logic This part manages the communication with the master (e.g., a microcontroller). It handles: * **Start/Stop conditions.** * **Acknowledge (ACK/NACK)** signals. * **Device Addressing:** The chip uses a fixed 4-bit code (`1010`) followed by the state of the E2, E1, and E0 pins to identify itself on the bus. #### C. Write Protection (WC) A hardware-based protection mechanism. When the `WC` pin is tied to VCC, the entire memory is protected against write instructions. When tied to VSS, the memory behaves normally, allowing both Read and Write operations. #### D. Page Write Buffer The device supports "Page Writes" of up to **8 bytes**. This allows multiple bytes to be written in a single bus cycle, significantly improving the write speed for larger data blocks. --- ### 4. Typical Application Circuit To use the M24C01-RDS6TP, you generally need two pull-up resistors on the I²C lines: ```c // Connection Logic: // SDA (Pin 5) ----> Pull-up Resistor (e.g., 4.7kΩ) ----> VCC // SCL (Pin 6) ----> Pull-up Resistor (e.g., 4.7kΩ) ----> VCC // VCC (Pin 8) ----> Decoupling Capacitor (0.1µF) ----> GND ``` --- ### 5. Ordering Information Deciphered The part number **M24C01-RDS6TP** breaks down as follows: * **M24**: I²C Serial EEPROM family. * **C01**: 1-Kbit density. * **R**: Operating voltage range of 1.8V to 5.5V. * **DS**: TSSOP8 package (Thin Shrink Small Outline). * **6**: Temperature range (-40°C to 85°C). * **TP**: Tape and Reel packaging.
    ✨ Follow-up Questions
    • How do you calculate the correct pull-up resistor values for the SDA and SCL lines?
    • What are the specific steps to perform a Page Write operation on this EEPROM?
    • Can multiple M24C01 chips be used on the same I2C bus
    • and how is the addressing managed?