Bird
0
0
PCB Designbi_tool~10 mins

Pull-up and pull-down resistors in schematic in PCB Design - Cell-by-Cell Formula Trace

Choose your learning style9 modes available
Sample Data

This table shows pins with their signal names, resistor type (pull-up or pull-down), and resistor values used in a schematic.

CellValue
A1Pin
B1Signal
C1Resistor Type
D1Resistor Value (Ohms)
A21
B2Input1
C2Pull-up
D210000
A32
B3Input2
C3Pull-down
D310000
A43
B4Input3
C4Pull-up
D44700
Formula Trace
IF(C2="Pull-up", "Connect to VCC through resistor", IF(C2="Pull-down", "Connect to GND through resistor", "No resistor"))
Step 1: C2 = "Pull-up"
Step 2: IF(TRUE, "Connect to VCC through resistor", IF(C2="Pull-down", "Connect to GND through resistor", "No resistor"))
Cell Reference Map
   A      B          C           D
1 | Pin | Signal | Resistor Type | Resistor Value
2 |  1  | Input1 |  Pull-up     |  10000
3 |  2  | Input2 |  Pull-down   |  10000
4 |  3  | Input3 |  Pull-up     |  4700

Arrow: Formula checks C2 for resistor type
The formula references cell C2 to determine if the resistor is pull-up or pull-down.
Result
   A      B          C           D               E
1 | Pin | Signal | Resistor Type | Resistor Value | Connection
2 |  1  | Input1 |  Pull-up     |  10000       | Connect to VCC through resistor
3 |  2  | Input2 |  Pull-down   |  10000       | Connect to GND through resistor
4 |  3  | Input3 |  Pull-up     |  4700        | Connect to VCC through resistor
The result column E shows the connection type based on resistor type: pull-up connects to VCC, pull-down connects to GND.
Sheet Trace Quiz - 3 Questions
Test your understanding
What does the formula return when C2 contains 'Pull-up'?
AConnect to VCC through resistor
BConnect to GND through resistor
CNo resistor
DError
Key Result
IF resistor type is 'Pull-up' then connect to VCC, else if 'Pull-down' connect to GND, else no resistor.