Substituting H1102NL with HX1188NL (or vice versa) is electrically safe — but physically requires a new PCB footprint and careful pin-out verification. Here's the complete analysis.
Electrical Spec Comparison
Parameter H1102NL (Pulse) HX1188NL Match?
────────────────────────────────────────────────────────────────────────
Application 10/100BASE-TX 10/100BASE-TX ✅
OCL (min) 350 µH 350 µH ✅
OCL test condition 100kHz, 0.1V RMS 100kHz, 0.1V RMS ✅
Insertion loss (max) < 1.0 dB < 1.0 dB ✅
Return loss (min) > 16 dB > 16 dB ✅
Isolation voltage 1500V AC, 60s 1500V AC, 60s ✅
Turns ratio 1CT:1CT 1CT:1CT ✅
IEEE compliance 802.3 Clause 40 802.3 Clause 40 ✅
Physical Comparison — Where Substitution Gets Complicated
Property H1102NL HX1188NL Compatible?
──────────────────────────────────────────────────────────────────────────
Pin count 16-pin SMD 8-pin SMD ❌ Different
Footprint 16-pad SMD 8-pad SMD ❌ PCB revision needed
Shield pin Yes (dedicated) Variant-dependent ⚠️ Verify
Package dimensions Larger Smaller ❌ Different
Pin-out standard No industry std No industry std ❌ Must verify each
The Pin-Out Problem
python# Pin assignments are NOT standardized across manufacturers
This is the most common cause of "substituted transformer, now no link"
Example: two hypothetical 8-pin SMD transformers
(always check actual datasheets - these are illustrative)
h1102nl_pins = {
# Pin : Signal
1: "TX+", # Primary transmit positive
2: "TX-", # Primary transmit negative
3: "CT_TX", # Primary center tap
4: "NC",
5: "RX+", # Secondary receive positive
6: "RX-", # Secondary receive negative
7: "CT_RX", # Secondary center tap
8: "SHIELD",
}
hx1188nl_pins = {
# Pin assignments differ — illustrative example
1: "RX-", # ← completely different from H1102NL pin 1
2: "RX+",
3: "CT_RX",
4: "SHIELD",
5: "TX-",
6: "TX+",
7: "CT_TX",
8: "NC",
}
Using H1102NL footprint with HX1188NL part:
TX+ (PHY) → Pin 1 → connects to HX1188NL RX-
Result: TX and RX are crossed → no link established
Symptom: board looks assembled correctly, Ethernet port dead
Substitution Decision Checklist
Step 1: Electrical verification
[ ] Both parts meet IEEE 802.3 Clause 40
[ ] OCL tested at same conditions (100kHz / 0.1V RMS)
[ ] IL and RL within same spec range
→ ✅ Electrically compatible
Step 2: Physical feasibility
[ ] Pin count matches (H1102NL = 16-pin, HX1188NL = 8-pin)
[ ] Package footprint can fit in same board area
[ ] Shield pin requirement assessed for EMC budget
→ ⚠️ Requires new PCB footprint
Step 3: Pin-out mapping (critical)
[ ] Open BOTH datasheets — do not rely on memory or library defaults
[ ] Map every pin: TX+, TX-, CT_TX, RX+, RX-, CT_RX, Shield/NC
[ ] Verify signal assignments match between parts
[ ] Build new footprint from target part's datasheet
→ ❌ Never reuse footprint across vendors
Step 4: Layout verification
[ ] Creepage distance ≥ 6.4mm across isolation barrier (1500V AC)
[ ] Bob Smith components within 5mm of center tap pins
[ ] Differential pair trace lengths matched within 0.5mm
[ ] Shield connection maintained to chassis GND
Step 5: Incoming inspection + functional test
[ ] OCL measurement: LCR meter at 100kHz / 0.1V RMS → ≥ 350µH
[ ] Functional: link at 100Mbps, zero packet loss, 50m cable test
[ ] Thermal soak: link stable at +70°C for 30 minutes
When to Choose Each Part
Choose H1102NL when:
✓ Existing PCB footprint already designed for 16-pin Pulse package
✓ Shield pin needed for marginal EMC budget (saves 3-6 dB)
✓ Design is being validated against Pulse reference schematics
✓ Distributor stock (Digi-Key/Mouser) is the sourcing channel
Choose HX1188NL when:
✓ Smaller board footprint is required
✓ Asian sourcing with low MOQ needed (50pcs via Voohu)
✓ Industrial temperature required (−40/+85°C variant available)
✓ New design where footprint flexibility exists
Both perform identically in correct circuit — the decision is
physical, sourcing, and EMC driven, not electrical.
Source
Voohu Technology — www.voohuele.com
HX1188NL manufacturer. Full datasheet with pin-out + lot OCL test data for H1102NL cross-reference.
MOQ: 50pcs | DHL 3–5 days | Japan / Korea / SE Asia
Top comments (0)