Make the User Happy: Interoperability Do's and Don'ts

Size: px
Start display at page:

Download "Make the User Happy: Interoperability Do's and Don'ts"

Transcription

1 Make the User Happy: Interoperability Do's and Don'ts Benson Leung Software Engineer, Chrome OS, Google Inc Taipei, Taiwan October 24 25,

2 Session Agenda Don't Start With Legacy Turn Off Unused Features Truth In Advertising Interop Uncommon Combos. Key Takeaways Q&A 2

3 Real World Bugs Names withheld to protect the innocent... (However, several real bugs from Google's own Type-C devices and accessories) 3

4 #1 Don't Start With Legacy 4

5 Unwise Idea: Adapting a Legacy USB design Early Type-C designs descended from existing A and µb stuff Sources - adapted directly from Type-A chargers Cables - adapted directly from Type-A to Micro-B cables Sinks (phones, tablets, others) - adapted from Micro-B sinks, inheriting hardware and generations worth of complex charging logic in firmware and software 5

6 Legacy adaptation in Power Sources Type-C Type-A 6

7 Type-C Spec Fig 4-7 Source Functional Model FET enables/disables VBUS, initially off (Vbus Cold) Separate Rp on CC1 & CC2 Source monitors CC1 & CC2 V for connection Source monitors CC1 & CC2 V for detach. Cold upon detach NOTE: C Receptacle, hence both CCs 7

8 Actual power supply in market # 1 No FET. VBUS is 5V always (VBUS hot) Nothing monitors CC1 & CC2 V for sink presence Nothing Monitors CC1 & CC2 V for sink detach Two Rps DON'T DO THIS. NOTE: C Receptacle, hence both CCs 8

9 Actual power supply in market # 1 How did this happen? Existing Type-A chargers always 5V on, VBUS Hot. Designer swapped existing A receptacle with C Bare minimum to get a (noncompliant) C charger to market - Or is it? DON'T DO THIS. NOTE: C Receptacle, hence both CCs 9

10 Power supply in market # 2 - Even Barer Same as #1, but second Rp is omitted CC1 & CC2 tied together (maybe) DON'T DO THIS. NOTE: C Receptacle, hence both CCs 10

11 Legacy adaptation In Type-C cables 11

12 Type-C to Type-A Legacy Cable Interop No charging or data when used w/ some devices (Google Chromebook Pixel and Pixel C) SS data in one orientation, HS data only in other 12

13 Legacy Host Adapter, Per Type-C Spec Fig kω ± 5% Must be "Default USB Power" 13

14 Legacy Host Adapter, Bad Cable DON'T DO THIS. NONE??? Consequence : Compliant devices depend on vrd for orientation, power, and presence. Many don't charge, or don't mux SSTX SSRX with missing Rp. 14

15 "USB 3.0 C to C cable" Interop USB 3.1 data to SSD and phone work USB 2.0 works Charging seems to work DP Alt mode to monitor fails 15

16 "USB 3.0 C to C Cable" ACT result TX2 and RX2 pairs missing Ra missing SBU1/SBU2 missing emarker missing Advanced Cable Tester courtesy of Total Phase 16

17 What they did, and why. Started with USB 3.0 A-to-B Replaced As and Bs with C plugs Added a CC wire Tested, worked for them for data Never tested Alt Modes DON'T DO THIS. 17

18 Legacy adaptation in Power Sinks 18

19 Phone Symptoms of Legacy Design 1. No charging from Vbus Cold adapters 2. Slow charging from compliant 1.5A & 3A sources 3. Overdraw some power sources (PCs). 19

20 Phone user might encounter... No Charging Type-C and PD charger, 60W 20

21 Google 60W "Zinger" - Captive Cable, PD USB PD - 5V 3A, 12V 3A, 20V 3A (predates Section 10 Power Rules, complies with Power Profiles in PD 2.0) Type-C - Rp-3A0 VBUS Cold, as required for all PD power sources No BC 1.2 DCP - Dp Dn floating 21

22 Google 60W "Zinger" - Captive Cable, PD USB PD - 5V 3A, 12V 3A, 20V 3A (predates Section 10 Power Rules, complies with Power Profiles in PD 2.0) Type-C - Rp-3A0 VBUS Cold, as required for all PD power sources No BC 1.2 DCP - Dp Dn floating 22

23 Type-C Spec Fig 4-9 Sink Functional Model Separate Rds on CC1 & CC2 Rds required to trigger VBUS Cold Type-C sources Sink monitors VBUS for connection Sink determines Current advertisement by reading vrd NOTE: C Receptacle, hence both CCs 23

24 Legacy HW - Actual Sink #1 - No charging Sink monitors VBUS for connection No Rds Vbus Hot required, won't trigger Vbus Cold sinks Ignores Rp on source side for current limit. Someone thought Type-C was Micro-B in a different shape and swapped it. NOTE: C Receptacle, hence both CCs DON'T DO THIS. 24

25 Legacy in Sink Firmware and Software 25

26 Phone user might encounter... Slow Charging Type-C and PD charger, 60W 26

27 Google 60W "Zinger" - Captive Cable, PD USB PD - 5V 3A, 12V 3A, 20V 3A (predates Section 10 Power Rules, complies with Power Profiles in PD 2.0) Type-C - Rp-3A0 VBUS Cold, as required for all PD power sources No BC 1.2 DCP - Dp Dn floating 27

28 Google 60W "Zinger" - Captive Cable, PD, No BC USB PD - 5V 3A, 12V 3A, 20V 3A (predates Section 10 Power Rules, complies with Power Profiles in PD 2.0) Type-C - Rp-3A0 VBUS Cold, as required for all PD power sources No BC 1.2 DCP - Dp Dn floating No legacy µb sink can attach to Zinger b/c passive CRecpt-to-µB adapters not allowed by spec Compliant Type-C and PD sinks will use Type-C 3A current or PD to get proper current limit 28

29 Legacy SW - Sink #2 only ~400mA from Zinger vrd on CC2 is 1.7V, which is within range for vrd-3.0 Phone ignores. Falls back to floating DpDn charger behavior 29

30 Table 4-17 Precedence of power source usage 30

31 Power Source Precedence as Pseudocode int curr_limit_ma; if (sink_supports_pd && source_is_pd) { curr_limit_ma = get_pd_curr_limit(); /* PD negotiation here */ goto END; } type_c_curr = get_advertisment_from_cc_vrd(); switch (type_c_curr) { case TYPE_C_3A0: curr_limit_ma = 3000; break; case TYPE_C_1A5: curr_limit_ma = 1500; break; case TYPE_C_DEFAULT: if (is_bc12_cdp) curr_limit_ma = 1500; else if (is_bc12_dcp) curr_limit_ma = min(1500, get_bc12_dcp_cur_limit()); /* Legacy ICL discovery here */ else /* sdp */ curr_limit_ma = DEFAULT_USB; break; } 31

32 Sink #2 Pseudocode - Ignores Type-C current int curr_limit_ma; if (sink_supports_pd && source_is_pd) { curr_limit_ma = get_pd_curr_limit(); /* PD negotiation here */ goto END; } DON'T DO THIS. type_c_curr = get_advertisment_from_cc_vrd(); switch (type_c_curr) { case TYPE_C_3A0: curr_limit_ma = 3000; break; case TYPE_C_1A5: curr_limit_ma = 1500; break; case TYPE_C_DEFAULT: if (is_bc12_cdp) curr_limit_ma = 1500; else if (is_bc12_dcp) curr_limit_ma = min(1500, get_bc12_dcp_cur_limit()); /* Legacy ICL discovery here */ else /* sdp */ curr_limit_ma = DEFAULT_USB; break; } 32

33 Some Sinks intentionally snub vrd-3.0a Several phone manufacturers detect vrd-3.0a, but ignore it intentionally in their charging logic. Reason: Rp-3.0A was abused by out of spec A-to-C cables with 10kΩ resistors which are still in the ecosystem, so 3A level can never be trusted. Billed as a "safety feature" Decision punishes compliant Type-C 3A power sources with slower than intended charging. HIGHLY Counterproductive. Don't Do This. This is a workaround to an ecosystem problem that only hurts compliant chargers, and rewards noncompliant cables. When you see vrd-3a, use 3A as a current limit. 33

34 Phone user might encounter... Overcurrent Scenario: User plugs Type-C device into new Type-C computer (MacBook Pro, Chromebook, Windows PCs, etc) to sync data or charge Scary OS warning about using too much power. Device disconnects. 34

35 Dual Port 22.5W - "Donnette" w/ Sub-States! Port A - Rp-3A0 Initially Port B - Rp-1A5 Initially Each port may supply 3.0A Supports just Type-C, no PD Load balances between Ports A and B, flipping Rp-3A0 and Rp-1A5 between ports depending on load on Port B. Relies on Sink Power Sub-States: Sinks on both ports may observe dynamic vrd 35

36 Donnette Sub-State Load Balancing In Action Port A, with Chromebook Sink Port B, with adjustable DC load 36

37 Donnette Sub-State Load Balancing In Action Port A, with Chromebook Sink Port B, with adjustable DC load 37

38 Donnette Sub-State Load Balancing In Action Port A, with Chromebook Sink, Proper Sub-State Current Limit Following 38

39 Legacy SW - Sink #3 - Sub-States Sink not respecting Sink Power Sub-States. Overdrawing during periods of vrd-1.5 by drawing 1.9A DON'T DO THIS. Donnette Port A, Noncompliant Sink Possible explanations: 1. Sink software ignores Type-C Current Detection entirely (like example Sink #2). a. Falls back to DCP, which Donnettes presents b. Overdraws BC 1.2's 1.5A limit too Sink detects Type-C Current Detection, but only at initial connection time. a. Inherited behavior from BC 1.2 logic on Micro-B/Type-A, where source can't change power capability during same connected session. b. IRQ from Type-C controller not wired up. CC advertisement only polled at connect time. 39

40 Many USB-C PCs already rely on Sub-States Samsung Chromebook Plus Apple MacBook Pro 40

41 Sink Power Sub-States Required by Android CDD USB peripheral mode [C-1-3] MUST detect 1.5A and 3.0A chargers per the Type-C resistor standard and MUST detect changes in the advertisement if they support Type-C USB. Android team will test all new Type-C phone designs. Test and fix your phones before launch, or you'll get flagged for a CDD violation. 41

42 Legacy Source/Cable/Sink Key Takeaways Start from scratch with Type-C, then add legacy support. Type-C spec has clear and simple guidance on adding legacy support (BC 1.2, etc). No such guidance for adapting legacy designs for C. Taking a Type-A or Micro-B design and "fixing it up" to be Type-C is far harder and trickier, especially if designer doesn't understand all of the implications. 42

43 #2 Turn off unused features! 43

44 Be wary of leaving on extra features Modern Type-C Controllers' varied capabilities Fixed UFP operation Fixed DFP operation Act as SOP' in an EMCA Built in Dead Battery Rd for UFPs Dual Role Toggling for DRPs Try.SRC/Try.SNK PD 44

45 Extra Features - Dedicated Power SRC #1 4.8A Total 3A 2.4A 45

46 Extra Features - Dedicated Power SRC #1 4.8A Total 3A Only Charges Laptop 50% of time. 2.4A 46

47 Extra Features - Dedicated Power SRC 4.8A Total 3A 2.4A DON'T DO THIS. Dual Role Toggling on a fixed source-only AC adapter 47

48 Extra Features - Dedicated Power SRC DRP Try.SRC 4.8A Total 3A DRP Try.SRC 2.4A DON'T DO THIS. Would you kindly not enable DRP when building a fixed source? 48

49 Extra Features - Dedicated Power SRC #2 Car ON 5V3A 9V3A 49

50 Extra Features - Dedicated Power SRC #2 DON'T DO THIS. Car OFF DEAD BATT Rds 5V3A 9V3A Would you kindly not enable Dead Batt Rd when building a fixed source? High-Z CCs, please! 50

51 Speaking of Rds... Here's an advanced cable 15V 5V3A 9V3A 15V3A 15V USB 3.1 Gen 2, 3A Full Featured Cable 45W, 15V safe Credit to Nathan K. for discovering this. 51

52 What's supposed to happen. vsafe0v 5V3A 9V3A 15V3A vsafe0v USB 3.1 Gen 2, 3A Full Featured Cable Credit to Nathan K. for discovering this. 52

53 What actually happened. 15V 5V3A 9V3A 15V3A 15V USB 3.1 Gen 2, 3A Full Featured Cable Credit to Nathan K. for discovering this. 53

54 What could have happened easily. 15V 5V3A 9V3A 15V3A 15V USB 3.1 Gen 2, 3A Full Featured Cable 5V only Credit to Nathan K. for discovering this. 54

55 EMCA Functional model 55

56 emarked Cable with Extra Rd Credit to Nathan K. for discovering this. DON'T DO THIS. 56

57 Truth in Advertising 57

58 Truth in Advertising Make sure all of the following match/are consistent 1. Information on web site or Amazon product listing 2. Information on packaging 3. Markings on product 4. Analog adv, if applicable (Rp) 5. Digital adv, if applicable (SRCCAP, SINKCAP, DISC_IDENT) 6. Actual capability 58

59 Ex #1: USB 3.1 Gen 1, 5A Full-Featured Cable 3A rating instead of 5A - slower charging when used with >60W source + sink Gen 2 speed instead of Gen 1 - Gen 2 host + client may fail data if cable SI not tuned for 10gbps DON'T DO THIS. Advanced Cable Tester courtesy of Total Phase 59

60 Fill out VID:PID and others accurately! Apple, Google, and others capture this information in logs Accurate information will help identify interoperability problems in the field from user bug reports. Applies to cables, power sources, power sinks, and USB devices. Don't skip or lie about VID:PID 60

61 Ex 2: 10W Car Adapter 5V2A, 9V1.67A 12V1.25A No PD Support Supports 5V2A, 9V1.67A, 12V1.25A using prohibited proprietary method (violates Section 4.8.2), according to marketing material and device's markings DON'T DO THIS. 61

62 Ex 2: 10W Car Adapter Rp-3.0A DON'T DO THIS. 5V2A, 9V1.67A 12V1.25A Rp-3.0A measured Overcurrent Protection set at 5V ~2.1A 62

63 Ex 2: 10W Car Adapter Rp-3.0A 5V2A, 9V1.67A 12V1.25A 0W - OCP 5V 3A capable sink Compliant 5V 3A Type-C Sink immediately OCPs Proper Rp to match device markings is Rp-1.5A 63

64 Ex 3: 30W Power Supply What Amazon / Web Site says: 30W Output 5V 3A, 9V 2A, 15V 2A, 20V 1.5A max What label says: What SRCCAP says: SRCCAP 5000mV/3000mA 9000mV/3000mA 15000mV/3000mA DON'T DO THIS. 45W 64

65 Ex 3: 30W Power Supply - Possibility 1 45W 30W (Digital 45W) 45W Chromebook Underlying supply can actually support 45W. Charging is stable. 65

66 Ex 3: 30W Power Supply - Possibility 2 0W - OCP 30W (Digital 45W) 45W Chromebook Charger OCP set to just over 2A at 15V. 45W laptop will try to draw 3A, and trip OCP. 66

67 Ex 3: 30W Power Supply - Possibility 3 ~45W at first 30W (Digital 45W) 45W Chromebook Underlying supply actually 30W supply. OCP set to above 3A at 15V. Charger gets hot... 67

68 Ex 3: 30W Power Supply - Possibility 3 #At first > tw vbus VBUS = mv ; ma # 5 minutes later > tw vbus VBUS = mv ; ma # 10 minutes later > tw vbus VBUS = 9340 mv ; ma Charger gets REALLY hot. 68

69 Ex 4: Phone as a Source! What Phone's SRCCAP says: SRCCAP 5000mV/900mA What Phone's Pre-PD Rp says: Rp-1.5A What Phone's OCP is: 1100mA DON'T DO THIS. Violates PD Power Rules Compliant non-pd Type-C Sinks may overcurrent the phone. 69

70 Ex 4: Phone as a Source! What Phone's SRCCAP says: SRCCAP 5000mV/900mA What Phone's Pre-PD Rp says: Rp-1.5A Rp-DefaultUSB What Phone's OCP is: 1100mA PD Rules OK. Same limit PD vs. No PD. Maximum sink will draw less than overcurrent. 70

71 Ex 5: Power Bank or Docking station "UP" bit USB-C wired docking station (or Portable Battery Pack) sets Dual-Role Power, but not Unconstrained Power. 71

72 Ex 5: Power Bank or Docking station "UP" bit 5V, but 0A Dock w/ No "UP" When attached to Chromebook, DRP +!UP results in 5V negotiated, but 0 A, no charging. 72

73 Ex 5: Power Bank or Docking station "UP" bit 5V, but 0A Chromebooks use DRP +!UP to detect when attached to another Chromebook! Won't charge from each other by default (unless user orders). 73

74 Ex 5: Power Bank or Docking station "UP" bit 45W Dock w/ "UP" When building a DRP Docking Station or a Portable Battery Pack, please set UP. 74

75 Test Wide! Interop Uncommon Combos! 75

76 Test with emarked Cables! Kinds of C-to-C cables: 1. USB 2.0 3A 2. USB 2.0 5A 3. USB 3.1 Gen 1 3A 4. USB 3.1 Gen 1 5A emarker Required 5. USB 3.1 Gen 2 3A 6. USB 3.1 Gen 2 5A Significant difference between emarked and non-emarked: Ra on Vconn 76

77 Recall Shorted CC1 + CC2 Power Source DON'T DO THIS. NOTE: C Receptacle, hence both CCs 77

78 Shorted CC Source + EMCA 78

79 Shorted CC Source + EMCA 1. If Vbus Hot, 3A Power source mistaken for Default USB, charging slowly 2. If Vbus Cold, 0.4V lower than 3A activation min (.85V) No Charging 79

80 Shorted CC1 Source + EMCA + DRP w/ Audio Shorted CC Source EMCA DRP, presenting as Source DRP may see Ra-Ra, and drop into Audio Adapter Accessory Mode! 80

81 Combo - PD 3.0 PPS Supply and PD 2.0 Sink Brand new USB PD 3.0 PPS Supply with existing PD 2.0 Sink: SRC/0 [71a1]SRCCAP 5000mV/3000mA 9000mV/3000mA 12000mV/3000mA 15000mV/3000mA 20000mV/2250mA 39000mV/5720mA 13400mV/5530mA SNK/0 [0041]GOODCRC SRC/1 [0363]ACCEPT SNK/1 [0241]GOODCRC SRC/2 [0566]PSRDY SNK/2 [0441]GOODCRC SNK/1 [1242]REQUEST{7} 7004b12c SRC/1 [0361]GOODCRC SRC/3 [0764]REJECT SNK/3 [0641]GOODCRC Result: Slow charging, 5V only PD 2.0 Sink 81

82 Combo - PD 3.0 PPS Supply and PD 2.0 Sink New USB PD 3.0 PPS Supply with existing PD 2.0 Sink: SRC/0 [71a1]SRCCAP 5000mV/3000mA 9000mV/3000mA 12000mV/3000mA 15000mV/3000mA 20000mV/2250mA 39000mV/5720mA 13400mV/5530mA SNK/0 [0041]GOODCRC Augmented PDOs; PD 2.0 Analyzer (and sink) misdecode SRC/1 [0363]ACCEPT SNK/1 [0241]GOODCRC Sink mistakenly requests APDO using PD 2.0 REQUEST SRC/2 [0566]PSRDY SNK/2 [0441]GOODCRC SNK/1 [1242]REQUEST{7} 7004b12c SRC/1 [0361]GOODCRC SRC/3 [0764]REJECT SNK/3 [0641]GOODCRC Result: Slow charging, 5V only PD 2.0 Sink 82

83 PD 3.0 PPS + PD 2.0 PSA! Check that PD 2.0 sinks disregard all PDOs with Reserved value 11b. Firmware update may be required! PD 3.0 PDO PD 2.0 PDO 83

84 Combo - Pixel phone, Apple hub, 3p charger Third Party Type-C/PD Charger Interop Result: Slow charging at phone. 5V 500mA only. Expected ~9V fast charging. 84

85 PD Trace Between Apple hub, 3p charger SRC/0 SNK/0 SNK/0 SRC/0 SRC/1 SNK/1 SRC/2 SNK/2 SRC/3 SNK/3 SNK/1 SRC/1 SRC/4 SNK/4 SNK/2 SRC/2 SRC/5 SNK/5 SRC/6 SNK/6 [51a1]SRCCAP 5000mV/3000mA 9000mV/3000mA 12000mV/3000mA 15000mV/3000mA 20000mV/3000mA [0041]GOODCRC [1042]REQUEST{1} [0161]GOODCRC [0363]ACCEPT [0241]GOODCRC [0566]PSRDY [0441]GOODCRC [176f]VDM Vff00:DISCID,INI:ff [0641]GOODCRC [424f]VDM Vff00:DISCID,ACK:ff ac [0361]GOODCRC [2961]SRCCAP 5000mV/3000mA 15000mV/2000mA [0841]GOODCRC [1442]REQUEST{1} [0561]GOODCRC [0b63]ACCEPT [0a41]GOODCRC [0d66]PSRDY [0c41]GOODCRC 85

86 PD Trace Between Apple hub, 3p charger SRC/0 SNK/0 SNK/0 SRC/0 SRC/1 SNK/1 SRC/2 SNK/2 SRC/3 SNK/3 SNK/1 SRC/1 SRC/4 SNK/4 SNK/2 SRC/2 SRC/5 SNK/5 SRC/6 SNK/6 [51a1]SRCCAP 5000mV/3000mA 9000mV/3000mA 12000mV/3000mA 15000mV/3000mA 20000mV/3000mA [0041]GOODCRC [1042]REQUEST{1} [0161]GOODCRC [0363]ACCEPT [0241]GOODCRC [0566]PSRDY [0441]GOODCRC [176f]VDM Vff00:DISCID,INI:ff [0641]GOODCRC [424f]VDM Vff00:DISCID,ACK:ff ac [0361]GOODCRC [2961]SRCCAP 5000mV/3000mA 15000mV/2000mA [0841]GOODCRC [1442]REQUEST{1} [0561]GOODCRC [0b63]ACCEPT [0a41]GOODCRC [0d66]PSRDY [0c41]GOODCRC 60W, PD Rules Compliant 30W, Missing Normative 9V 86

87 Third Party Vendor specific (Apple) hack SRC/0 SNK/0 SNK/0 SRC/0 SRC/1 SNK/1 SRC/2 SNK/2 SRC/3 SNK/3 SNK/1 SRC/1 SRC/4 SNK/4 SNK/2 SRC/2 SRC/5 SNK/5 SRC/6 SNK/6 [51a1]SRCCAP 5000mV/3000mA 9000mV/3000mA 12000mV/3000mA 15000mV/3000mA 20000mV/3000mA [0041]GOODCRC [1042]REQUEST{1} [0161]GOODCRC [0363]ACCEPT [0241]GOODCRC [0566]PSRDY [0441]GOODCRC [176f]VDM Vff00:DISCID,INI:ff [0641]GOODCRC [424f]VDM Vff00:DISCID,ACK:ff ac [0361]GOODCRC [2961]SRCCAP 5000mV/3000mA 15000mV/2000mA [0841]GOODCRC [1442]REQUEST{1} [0561]GOODCRC [0b63]ACCEPT [0a41]GOODCRC [0d66]PSRDY [0c41]GOODCRC "Who Are You?" "Apple hub VID:PID" "Apples Get Less" 87

88 What happened? 1. Apple releases ipad Pro in November 2015 (Tells no one about PD). 2. March 2016: Apple releases new C-to-Lightning cable, which lets ipad Pro 12.9" use USB PD and higher voltage. 3. Charger manufacturers discover a bug: ipad Pro 12.9" only selects 5V from some PD chargers 4. Manufacturers discover "fix" empirically: list only two PDOs. Craft a hidden workaround based on VID:PID 5. "Apple Flow" workaround goes into wide production, propagates to many chargers through common chipset firmware 6. Non-Apple Devices connected to these chargers via Apple dongles get reduced PDOs too. 88

89 What should have happened? 1. Apple releases ipad Pro in November 2015 (Tells no one about PD). 2. March 2016: Apple releases new C-to-Lightning cable, which lets ipad Pro 12.9" use USB PD and higher voltage. 3. Charger manufacturers discover a bug: ipad Pro 12.9" only selects 5V from some PD chargers 4. Manufacturers report a bug to Apple 5. Apple fixes bug, sends fw update to ipads 6. Everybody's happy. DON'T USE HIDDEN MODES OF OPERATION AS WORKAROUNDS 89

90 Key Takeaways 90

91 5 Key Takeaways 1. Keep your PD Analyzer handy, learn how to use it effectively 2. Test as many combinations as possible 6 kinds of C-to-C cable Vbus Hot vs Vbus Cold chargers Legacy cables and chargers Low wattage vs High wattage sinks Non-PD vs. PD Sources (of a variety of wattage) 3. Every piece of Type-C gear must stand on its own Swapping bundled gear for compliant cables, chargers, etc should have predictable results. Each individual piece of gear should be compliant "Only compatible with our own products and accessories" not acceptable 4. Know what to expect, file bugs when something defies your expectation 5. Test interop with your competitors' products too 91

92 Report bugs directly to Manufacturers When you find an issue in a product, file a bug with the manufacturer! Resist urge to bake vendor and product specific workarounds into your firmware. Apple Bug Report System: Chromebook Issue Tracker: Android/Pixel Phone Issue Tracker: Your Company's Bug Report System? Please provide a public link to report issues to make the ecosystem healthier! 92

93 Thank you! 93

94 Q&A Session 94

95 Backup Materials 95

96 Aside: Google's Power Adapter Line Adapter Max Power Type-C Rp Power Delivery PDOs BC 1.2 DCP 18W Rp-3.0A Yes 5V3A, 9V2A Yes 60W Rp-3.0A Yes 5V3A, 12V3A, 20V3A No 22.5W ( ) Rp-3.0A + Rp1.5A No N/A Yes "Tetra" "Zinger" "Donnette" 96

97 Design Considerations: Digital USB-C to 3.5mm 1. Must use a single Rd (no Ra-Ra for Analog) 2. Only present audio out/in when appropriate. Detached dongle should have no audio endpoint (or support UAC2/3 HPD) 3. Must HDP and transition quickly. 4. Implement Android 4-button Headset Spec as USB HID 5. Power consumption must be reasonable 2.5mA suspend 97

98 Legacy Host Adapter, Per Spec 56 kω ± 5% Must be "Default USB Power" 98

99 3A Noncompliant legacy host adapters 56kΩ 10kΩ!!! Consequence : 3A capable devices may overcurrent/damage older chargers/hubs/pcs. 99

STM32G0. World s 1st USB-C TM & Power Delivery 3.0 MCU

STM32G0. World s 1st USB-C TM & Power Delivery 3.0 MCU STM32G0 World s 1st TM & Power Delivery 3.0 MCU Why to use and Power Delivery Technology? 2 USB Type-C connector enhances user experience It s a 24-pin miniature and reversible connector. cable has same

More information

Nifty Type-C Features and Optimizations

Nifty Type-C Features and Optimizations Nifty Type-C Features and Optimizations Mark Hayter & David Schneider Hardware Engineering, Chrome OS, Google Inc Taipei, Taiwan October 24 25, 2017 1 Chromebook/USB-C: State of the union is good All new

More information

TA0357. Overview of USB Type-C and Power Delivery technologies. Technical article. Introduction

TA0357. Overview of USB Type-C and Power Delivery technologies. Technical article. Introduction Technical article Overview of USB Type-C and Power Delivery technologies Introduction The USB Type-C and Power Delivery technologies have revolutionized cable connectivity with the ability to carry all

More information

USB Type-C TM, IEEE CSNV

USB Type-C TM, IEEE CSNV USB Type-C TM, IEEE CSNV Ken Shoemaker 10 May, 2016 Credits, Trademarks, Disclaimers USB Type-C TM and USB-C TM are trademarks of the Universal Serial Bus Implementers Forum (USB-IF). DisplayPort TM is

More information

The USB Type-C Connector: A Brave New World for the PC Industry. Howard Heck April 17, 2015

The USB Type-C Connector: A Brave New World for the PC Industry. Howard Heck April 17, 2015 The USB Type-C Connector: A Brave New World for the PC Industry Howard Heck April 17, 2015 Introduction User Experience Vision Key Design Aspects Port Behaviors User Experience Driven Challenges Challenges

More information

1 Introduction. Release USB Type-C Cable and

1 Introduction. Release USB Type-C Cable and Release 1.0-13 - USB Type-C Cable and 1 Introduction With the continued success of the USB interface, there exists a need to adapt USB technology to serve newer computing platforms and devices as they

More information

QuadraMAX USB Type-C and PD Tests

QuadraMAX USB Type-C and PD Tests 2/13/2019 QuadraMAX USB Type-C and PD Tests Testing Manual Introduction The USB-IF Compliance Program uses the QuadraMAX hardware unit for USB Type-C and PD Source Power Tests (Source Tests), USB Type-C

More information

USB-C and DP Alt Mode Testing with Unigraf UCD

USB-C and DP Alt Mode Testing with Unigraf UCD USB-C and DP Alt Mode Testing with Unigraf UCD-340 2017-07-13 Data, Power and Display in One Interface USB Type-C USB Type-C High Speed Data Power Management Display Connection Superior Features in USB-C

More information

USB-C and Power Delivery Architecture in Windows 10 Jr-Chiang (JC) Jaw Microsoft Corporation, Senior Software Engineer

USB-C and Power Delivery Architecture in Windows 10 Jr-Chiang (JC) Jaw Microsoft Corporation, Senior Software Engineer 1 USB-C and Power Delivery Architecture in Windows 10 Jr-Chiang (JC) Jaw Microsoft Corporation, Senior Software Engineer USB Developer Days 2017 Taipei, Taiwan October 24-25, 2017 2 Agenda: USB-C and PD

More information

Universal Serial Bus Type-C (USB Type-C) Functional Test Specification Chapters 4 and 5

Universal Serial Bus Type-C (USB Type-C) Functional Test Specification Chapters 4 and 5 Universal Serial Bus Type-C (USB Type-C) Functional Test Specification Chapters 4 and 5 Date: October 26May 28, 2018 Revision: 0.7980 Compliance Rev 0.7980 Copyright 2016-2018, USB Implementers Forum,

More information

Lattice USB Type-C Solution Design Document

Lattice USB Type-C Solution Design Document October 2016 Introduction Reference Design RD1210 This design document describes the implementation details of the following Lattice FPGA based USB Type-C solutions: CD/PD for Hosts/Devices Dual Role Port

More information

Design Considerations for USB type C Power Delivery Brian King

Design Considerations for USB type C Power Delivery Brian King Design Considerations for USB type C Power Delivery Brian King 1 What will I get out of this session? Purpose: 1. Learn more about USB C Power Delivery (PD) requirements. 2. Understand architecture of

More information

USB-C Bridge for PDUSB Hubs and Charge-Through

USB-C Bridge for PDUSB Hubs and Charge-Through USB- Bridge for PDUSB Hubs and harge-through Terrance Shih terranceshih@via-labs.com.tw Developer Days 2017 Taipei 1 Agenda: USB- Bridge for PDUSB Hubs and harge-through USB Type- Bridge Specification

More information

Introduction to USB Type-C & Power Delivery

Introduction to USB Type-C & Power Delivery Introduction to USB Type-C & Power Delivery Focus on Charging Applications Deric Waters, System Engineer Agenda Introduction to USB Type-C and Power Delivery Detailed discussion of a USB Type-C universal

More information

TA0356. USB Type-C and Power Delivery DisplayPort Alternate Mode. Technical article. Introduction

TA0356. USB Type-C and Power Delivery DisplayPort Alternate Mode. Technical article. Introduction TA0356 Technical article USB Type-C and Power Delivery DisplayPort Alternate Mode Introduction The USB Type-C and Power Delivery specifications allow platforms equipped with USB Type-C ports to negotiate

More information

Windows 10 s USB-C and Power Delivery Architecture

Windows 10 s USB-C and Power Delivery Architecture Windows 10 s USB-C and Power Delivery Architecture Jr-Chiang, Jaw Microsoft Corporation, Senior Software Engineer Developer Days 2016 Hong Kong October 19-20, 2016 October 19 ShenZhen Legendary USB Implementers

More information

PI5USB30213A Application Information

PI5USB30213A Application Information PI5USB30213A Application Information Diodes Incorporated (Milpitas office) Table of Contents 1 Introduction... 2 2 Why PI5USB30213A in USB3.1 Gen1 Type-C Application... 2 2.1 Type-C Port Channel Budget...

More information

USB Type-C Charging. Brad Saunders Intel Corporation Bob Dunstan Renesas Corporation. USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017

USB Type-C Charging. Brad Saunders Intel Corporation Bob Dunstan Renesas Corporation. USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 USB Type-C Charging Brad Saunders Intel Corporation Bob Dunstan Renesas Corporation USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 1 Topic Agenda Introduction Implementation Choices and Recommendations

More information

ShenZhen Legendary. USB Developer Days USB Power Delivery. Developer Days 2016 Hong Kong October 19-20, 2016

ShenZhen Legendary. USB Developer Days USB Power Delivery. Developer Days 2016 Hong Kong October 19-20, 2016 USB Power Delivery Developer Days 2016 Hong Kong October 19-20, 2016 October 19 USB Implementers Forum 2016 1 Day 2 Power Delivery Agenda 8:30 Introduction and Architectural Overview 8:55 Physical Layer

More information

USB Type-C TM and Power Delivery Technology Overview. Karl Fleischmann Product Marketing Engineer

USB Type-C TM and Power Delivery Technology Overview. Karl Fleischmann Product Marketing Engineer USB Type-C TM and Power Delivery Technology Overview Karl Fleischmann Product Marketing Engineer Universal Serial Bus (USB) The interface of choice by billions 2000 2000 2001 2008 2013 USB USB2.0 LS/FS

More information

IP2716. Feature. Applications. Description. USB TYPE-C PD3.0 QC3.0/2.0/MTK High Voltage Charger Protocol Controller

IP2716. Feature. Applications. Description. USB TYPE-C PD3.0 QC3.0/2.0/MTK High Voltage Charger Protocol Controller USB TYPE-C PD3.0 QC3.0/2.0/MTK High Voltage Charger Protocol Controller Feature USB TYPE-C Integrate TYPE-C DRP protocol Auto detect TYPE-C device plug in or plug out Auto detect the capability of the

More information

Designing Type-C + PD Systems

Designing Type-C + PD Systems Designing Type-C + PD Systems Gregory Watkins Texas Instruments USB Developer Days 2017 Taipei, Taiwan October 24-25, 2017 1 Agenda System Components Data Switching Power Switching System Examples 2 Agenda

More information

VP222 USB Type-C DFP CC Controller with Universal Battery Charging

VP222 USB Type-C DFP CC Controller with Universal Battery Charging Product Preliminary VP222 USB Type-C DFP CC Controller with Universal Battery Charging Mar. 07, 2015 VIA Labs, Inc. www.via-labs.com 7F, 529-1, Zhongzheng Rd., Xindian District, New Taipei City 231 Taiwan

More information

USB Power Delivery Tester Users Guide

USB Power Delivery Tester Users Guide USB Power Delivery Tester Users Guide Model PM110 Rev 1 Document Edition: 1.0 Date: 18 April 2018 Web site: www.passmark.com USB Power Delivery Tester User s Guide Page 1 Table of Contents Introduction...

More information

4-Port USB 3.0 Hub plus Dedicated Charging Port - 1 x 2.4A Port

4-Port USB 3.0 Hub plus Dedicated Charging Port - 1 x 2.4A Port 4-Port USB 3.0 Hub plus Dedicated Charging Port - 1 x 2.4A Port Product ID: ST53004U1C Here s a must-have accessory for any mobile device user. This compact USB 3.0 hub lets you connect an additional four

More information

PI5USB30216C Plug-in Detector for Type-C Connector

PI5USB30216C Plug-in Detector for Type-C Connector Plug-in Detector for Type-C Connector Features Compatible to USB Type-C Specification 1.1 Backward compatible to USB Type-C Specification 1.0 Supports Host mode/device mode/dual-role mode Supports Dual-role

More information

USB Voltage and Current Tester Kit

USB Voltage and Current Tester Kit USB Voltage and Current Tester Kit Product ID: USBAUBSCHM This diagnostic kit gives you everything you need to make sure your USB devices are getting the proper charge. It enables you to: troubleshoot

More information

4-Port USB Hub - USB USB-A to 3x USB-A and 1x USB-C - Includes Power Adapter

4-Port USB Hub - USB USB-A to 3x USB-A and 1x USB-C - Includes Power Adapter 4-Port USB Hub - USB 3.0 - USB-A to 3x USB-A and 1x USB-C - Includes Power Adapter Product ID: HB30A3A1CSFS Here s an easy way to connect a wider range of peripherals to your laptop. This TAA compliant

More information

Total Phase Advanced Cable Tester User Manual

Total Phase Advanced Cable Tester User Manual Total Phase Advanced Cable Tester User Manual This document describes the Advanced Cable Tester web software applications, the Advanced Cable Tester Hardware, and how to use both. The Advanced Cable Tester

More information

DISPLAYPORT TECHNOLOGY UPDATE. Jim Choate VESA Compliance Program Manager June 15, 2017

DISPLAYPORT TECHNOLOGY UPDATE. Jim Choate VESA Compliance Program Manager June 15, 2017 DISPLAYPORT TECHNOLOGY UPDATE Jim Choate VESA Compliance Program Manager June 15, 2017 Agenda VESA Overview DisplayPort 1.4 Early Certification DisplayPort over USB-CTM Certification Summary 2 VESA OVERVIEW

More information

CH7214C Brief Datasheet

CH7214C Brief Datasheet Chrontel Brief Datasheet USB Type C Logic Controller FEATURES GENERAL DESCRIPTION Compliant with USB Type-C Cable and Connector Specification Revision 1.2 Compliant with the latest Power Delivery Specification

More information

Dell Thunderbolt Dock TB16 Product Overview

Dell Thunderbolt Dock TB16 Product Overview Product Overview The with Intel Thunderbolt 3 technology is the ultimate docking solution. With one cable, power users can provide power to their laptop, connect to three FHD displays or two 4K displays

More information

AN PTN5110N PD PHY application programming guide. Document information

AN PTN5110N PD PHY application programming guide. Document information Rev. 1.0 10 July 2018 Application note Document information Information Keywords Abstract Content PTN5110N, TCPC, Type-C Port Controller, TCPM, USB PD PHY, Fast Role Swap PTN5110N is a 1-port TCPC (Type-C

More information

USB Power Delivery Specification 1.0

USB Power Delivery Specification 1.0 USB Power Delivery Specification 1.0 1 Notice Please submit written feedback to: techsup@usb.org 2 Taking a Great Idea Broad international adoption of USB Battery Charging standard for mobile devices China,

More information

USB Type-C Active Cable ECN

USB Type-C Active Cable ECN USB Type-C Active Cable ECN Christine Krause Active Cable WG Chair (Sponsored by Intel Corporation) USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 1 Introduction Scope Requirements for active

More information

CH7213A Brief Datasheet

CH7213A Brief Datasheet Chrontel Brief Datasheet USB Type-C Logic Controller FEATURES Compliant with Type-C Specification Revision 1.2 Compliant with the Power Delivery Specification Revision 2.0, Version 1.1 Supports VESA DisplayPort

More information

Triple-4K Monitor USB-C Docking Station for Laptops - 60W USB Power Delivery

Triple-4K Monitor USB-C Docking Station for Laptops - 60W USB Power Delivery Triple-4K Monitor USB-C Docking Station for Laptops - 60W USB Power Delivery Product ID: DK30CH2DPPD This USB-C docking station for MacBook and Windows laptops takes productivity to a whole new level,

More information

UM NXP USB PD shield board user manual COMPANY PUBLIC. Document information

UM NXP USB PD shield board user manual COMPANY PUBLIC. Document information Rev. 0.3 19 June 2017 User manual COMPANY PUBLIC Document information Information Content Keywords Abstract OM13588, USB Type-C, PD (power delivery), Alt-mode-DP, Host, Dock This user manual presents demonstration

More information

USB Technical Overview

USB Technical Overview USB Technical Overview Brad Saunders USB-IF/USB PG Chair (Sponsored by Intel Corporation) USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 1 Topic Agenda System Level Overview USB 3.2 USB Type-C

More information

Product Data Sheet MA5885 (USB Fast Charging Emulator)

Product Data Sheet MA5885 (USB Fast Charging Emulator) Table of Contents 1. Description... 2 2. Feature... 2 3. Target Application... 3 4. MA5885 Charging Modes... 3 5. Detail Function Description... 4 6. Pin Assignment... 6 7. Pin Description... 6 8. Electrical

More information

3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White

3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White 3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White Product ID: HB30C3APDW This TAA compliant 3-port USB 3.0 hub lets you expand the functionality of your MacBook Pro, MacBook

More information

Setting up the Belkin USB-C 3.1 Express Dock HD, F4U093

Setting up the Belkin USB-C 3.1 Express Dock HD, F4U093 Setting up the Belkin USB-C 3.1 Express Dock HD, F4U093 The Belkin USB-C 3.1 Express Dock HD, F4U093 is the all-in-one docking solution that connects all external devices and powers your computer up to

More information

End Product Cable Test Plan

End Product Cable Test Plan USB Type-C End Product Cable Test Plan December 30, 2015 Rev: 0.7 Introduction USB Type-C cables may be Electronically Marked and support an array of USB and Vendor Defined functionalities. A cable may

More information

4-Port USB-C Hub - USB-C to 4x USB-A - USB 3.0 Hub - Includes Power Adapter

4-Port USB-C Hub - USB-C to 4x USB-A - USB 3.0 Hub - Includes Power Adapter 4-Port USB-C Hub - USB-C to 4x USB-A - USB 3.0 Hub - Includes Power Adapter Product ID: HB30C4AFS This compact USB 3.0 hub expands your connectivity by adding four USB Type-A ports through a single USB

More information

3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White

3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White 3-Port USB-C Hub with Power Delivery - USB-C to 3x USB-A - USB 3.0 Hub - White Product ID: HB30C3APDW This 3-port USB 3.0 hub lets you expand the functionality of your MacBook Pro, MacBook and other USB-

More information

USB C PD 50W Portable Power Dock Adapter for Notebooks with Built-In HDMI Output

USB C PD 50W Portable Power Dock Adapter for Notebooks with Built-In HDMI Output USB C PD 50W Portable Power Dock Adapter for Notebooks with Built-In HDMI Output Gearmo Version 1.0 December 2017 Model # GM-PDU31CNA Product Manual 2 PRODUCT MANUAL GM-PDU31CNA REVISION HISTORY Revision

More information

HDMI and DVI Dual-Monitor Docking Station for Laptops - Single 4K Support - USB 3.0

HDMI and DVI Dual-Monitor Docking Station for Laptops - Single 4K Support - USB 3.0 HDMI and DVI Dual-Monitor Docking Station for Laptops - Single 4K Support - USB 3.0 Product ID: USB3SMDOCK4K This compact dual-monitor docking station for laptops is uniquely designed with an innovative,

More information

... Amazing Performance.

... Amazing Performance. ... Amazing Performance. DEAR BUSINESS PARTNERS, AND CUSTOMERS. USB 3.1 SuperSpeed+ is the connection of the future. It is fast becoming the new universal connection standard and is already supported by

More information

Docking through USB-C is simple

Docking through USB-C is simple DVI Dual-Monitor Docking Station for USB-C Laptops - Includes USB-C to A Adapter, HDMI, and VGA Adapters StarTech ID: DK30BACDD This DVI dual-monitor docking station for laptops easily connects to your

More information

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows Product ID: TB3DKDPMAW This Thunderbolt 3 dock is designed for users with Thunderbolt 3 port equipped MacBook Pro or Windows based laptops.

More information

DVI Dual-Monitor Docking Station for USB-C Laptops - Includes USB-C to A Adapter, HDMI, and VGA Adapters

DVI Dual-Monitor Docking Station for USB-C Laptops - Includes USB-C to A Adapter, HDMI, and VGA Adapters DVI Dual-Monitor Docking Station for USB-C Laptops - Includes USB-C to A Adapter, HDMI, and VGA Adapters Product ID: DK30BACDD This DVI dual-monitor docking station for laptops easily connects to your

More information

Itunes Manually Install Ios Beta 6 On Iphone 4 Via >>>CLICK HERE<<<

Itunes Manually Install Ios Beta 6 On Iphone 4 Via >>>CLICK HERE<<< Itunes Manually Install Ios Beta 6 On Iphone 4 Via How to install ios 8.4 using itunes on your Mac or Windows PC Plug your iphone, ipad, or ipod touch in using your USB to Lightning or USB to 30-pin Dock.

More information

Lattice USB Type-C Solution

Lattice USB Type-C Solution October 2016 Introduction Reference Design RD1209 The USB Type-C receptacle, plug and cable provide a smaller, thinner and more robust alternative to existing USB interconnect. This new solution targets

More information

Wireless (WiGig) or USB-C Dual-Monitor Docking Station for Laptops - Power Delivery

Wireless (WiGig) or USB-C Dual-Monitor Docking Station for Laptops - Power Delivery Wireless (WiGig) or USB-C Dual-Monitor Docking Station for Laptops - Power Delivery Product ID: DKWG30DPHPDU This versatile laptop docking station gives you the option to dock your laptop through either

More information

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro Product ID: TB3DKDPMAWUE This Thunderbolt 3 dock is designed for users with Thunderbolt 3 port equipped

More information

USB Type-C Authentication

USB Type-C Authentication USB Type-C Authentication Stephanie Wallick Intel USB Developer Days 2017 Taipei, Taiwan October 24 25, 2017 1 USB Type-C Authentication Introduction Architecture Protocol Certificates 2 Specification

More information

3-Port USB 3.0 Hub with Gigabit Ethernet - USB-C - Includes Power Adapter. StarTech ID: HB30C3A1GE

3-Port USB 3.0 Hub with Gigabit Ethernet - USB-C - Includes Power Adapter. StarTech ID: HB30C3A1GE 3-Port USB 3.0 Hub with Gigabit Ethernet - USB-C - Includes Power Adapter StarTech ID: HB30C3A1GE If you have a USB-C equipped laptop, but lack other important connection ports, then this hub can help.

More information

USB2.0/3.2/BC1.2 Drop Droop Test for non-usb Type-C Products

USB2.0/3.2/BC1.2 Drop Droop Test for non-usb Type-C Products P a g e 1 USB2.0/3.2/BC1.2 Drop Droop Test for non-usb Type-C Products Version 1.4 30 April 2018 P a g e 2 Contents Contents... 2 1. Equipment... 3 2. Test hardware... 4 3. Vbus drop droop requirements...

More information

Usb Port On Manually Running Slow Windows 7

Usb Port On Manually Running Slow Windows 7 Usb Port On Manually Running Slow Windows 7 Note that you may need to install the latest Intel graphics driver manually (not by If you have Windows 7 installed see this article for where to obtain the

More information

PI5USB1468 PI5USB1468A

PI5USB1468 PI5USB1468A Features ÎÎManages communication to allow charging to occur ÎÎProvides multiple modes of charging to ensure all of the following specs can be met: DCP, CDP, and SDP per BC.0,.,. spec DCP per YD/T-59 spec

More information

DVI Dual-Monitor Docking Station for Laptops - HDMI and VGA Adapters - USB 3.0

DVI Dual-Monitor Docking Station for Laptops - HDMI and VGA Adapters - USB 3.0 DVI Dual-Monitor Docking Station for Laptops - HDMI and VGA Adapters - USB 3.0 Product ID: USB3SDOCKDD This USB 3.0 Laptop Docking Station delivers display flexibility, fast charging, and desktop convenience

More information

Keysight N7015A/16A Type-C Test Kit. User Guide

Keysight N7015A/16A Type-C Test Kit. User Guide Keysight N7015A/16A Type-C Test Kit User Guide Notices Keysight Technologies 2015, 2016 No part of this manual may be reproduced in any form or by any means (including electronic storage and retrieval

More information

CableCreation USB-C multiport hub. Contents

CableCreation USB-C multiport hub. Contents CableCreation USB-C multiport hub CD0395:Rose Gold Color CD0396:Space Grey Color CD0441: Rose Gold color CD0442: Space Gray Color CD0443: Gold Color CD0444:: Space Gray Color Contents 1.0 Introduction...

More information

I/O System for the PSYONIC Advanced Bionic Hand. Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017

I/O System for the PSYONIC Advanced Bionic Hand. Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017 I/O System for the PSYONIC Advanced Bionic Hand Team 28 Byron Hopps and Steven Sun ECE 445 Senior Design Fall 2017 Background PSYONIC is a startup at the University of Illinois working on bringing low-cost

More information

Instructions How To Use My Ipad While Charging The Battery Die

Instructions How To Use My Ipad While Charging The Battery Die Instructions How To Use My Ipad While Charging The Battery Die Find out what you need to charge the battery and what to do if you see a low-battery alert Apple Store Mac iphone Watch ipad ipod itunes Support

More information

USB Technology Update. Brad Saunders, USB Promoter Group Chairman Jeff Ravencraft, USB-IF President & COO Rahman Ismail, USB-IF CTO

USB Technology Update. Brad Saunders, USB Promoter Group Chairman Jeff Ravencraft, USB-IF President & COO Rahman Ismail, USB-IF CTO USB Technology Update Brad Saunders, USB Promoter Group Chairman Jeff Ravencraft, USB-IF President & COO Rahman Ismail, USB-IF CTO The New USB Technologies New USB technologies provide a single source

More information

Manual Iphone 5 Charger Cable Not Workaround Ios 7

Manual Iphone 5 Charger Cable Not Workaround Ios 7 Manual Iphone 5 Charger Cable Not Workaround Ios 7 Using the Lightning to USB Cable (iphone 5 or later) or the 30-pin. USB Cable (iphone 4s or earlier), connect iphone to your computer to sync and charge.

More information

USB Type C MST Charging Dock

USB Type C MST Charging Dock C S V- 1 5 6 0 USB Type C MST Charging Dock Compatible with USB 3.0/2.0 specification Single Screen Setup: - HDMI resolution up to 3840 x 2160 @ 30Hz - DisplayPort resolution up to 3840 x 2160 @ 30Hz Dual

More information

STS Product Family User Manual

STS Product Family User Manual STS Product Family User Manual July 9, 2015 Revision A02 Abstract The LAVA STS Product Family allows select Samsung Tablets to be charged while interacting with USB accessories, and enable a tablet-based

More information

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro

Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro Thunderbolt 3 Dual-4K Docking Station for Laptops - Mac and Windows - Thunderbolt 3 Dock for MacBook Pro Product ID: TB3DKDPMAWUE This cost-effective Thunderbolt 3 dock (without full Power Delivery) is

More information

USB-C to VGA Multifunction Adapter with Power Delivery and USB-A Port

USB-C to VGA Multifunction Adapter with Power Delivery and USB-A Port USB-C to VGA Multifunction Adapter with Power Delivery and USB-A Port Product ID: CDP2VGAUACP This universal multifunction adapter lets you expand the connectivity of your laptop or MacBook through USB-C.

More information

Automotive USB Type-C Charging Trends and Challenges

Automotive USB Type-C Charging Trends and Challenges Automotive USB Type-C Charging Trends and Challenges Power Interface Jim Bird (james_bird@ti.com) Tina Liang (tina-liang@ti.com) TI Training TI Training - Summary Automotive USB Type-C Charging Trends

More information

KT001 USB Power Meter

KT001 USB Power Meter KT001 USB Power Meter User Manual Rev V1.02 Welcome to use KT001 USB power meter designed and provided by yanke928, this manual will lead you to use the device, please save the manual properly for looking

More information

Dual-Monitor USB-C Dock for Windows Laptops - MST - Power Delivery - 4K

Dual-Monitor USB-C Dock for Windows Laptops - MST - Power Delivery - 4K Dual-Monitor USB-C Dock for Windows Laptops - MST - Power Delivery - 4K Product ID: MST30C2DPPD Here s a must-have accessory for your USB-C equipped Windows based laptop. This dual-monitor docking station

More information

USB C PD Docking Station w/multi-port USB 3.1 Hub

USB C PD Docking Station w/multi-port USB 3.1 Hub USB C PD Docking Station w/multi-port USB 3.1 Hub Gearmo Version 1.0 November 2017 Model # GM-UC31MPDOC Product Manual 2 PRODUCT MANUAL GM-UC31MPDOC REVISION HISTORY Revision Date Author Comments 1.0 11/20/2017

More information

Technology, E-Textbooks and BYOD Initiative at The Webb School

Technology, E-Textbooks and BYOD Initiative at The Webb School Technology, E-Textbooks and BYOD Initiative at The Webb School Does a student need his/her own email account? Yes, each student needs his/her own email account. Many digital text books are delivered to

More information

F USB Charger ID With Quick Charge 2.0 F _www.universe-micro.com. Release Date: June, 2014 Version: V0.10P

F USB Charger ID With Quick Charge 2.0 F _www.universe-micro.com. Release Date: June, 2014 Version: V0.10P USB Charger ID With Quick Charge 2.0 Release Date: June, 2014 Version: June, 2014 Datasheet Revision History Version Date Page Revision History 2014/06 - Preliminary Please note that all data and specifications

More information

General Description. Applications. Typical Operating Circuit

General Description. Applications. Typical Operating Circuit General Description The MAX14631/MAX14633 are USB charger adapter emulators with automatic host-charger identification circuitry for USB-dedicated chargers. The devices allow USB wall adapters, travel

More information

USB C DOCKING STATION

USB C DOCKING STATION USER MANUAL USBC2000 USB C DOCKING STATION 24/7 AT OR VISIT BLACKBOX.COM 4K@30Hz TABLE OF CONTENTS 1. SPECIFICATIONS... 3 2. OVERVIEW... 4 2.1 Introduction...4 2.2 Features...4 2.3 What s Included...5

More information

USB Type-C Power Delivery using STM32xx Series MCUs and STM32xxx Series MPUs

USB Type-C Power Delivery using STM32xx Series MCUs and STM32xxx Series MPUs Application note USB Type-C Power Delivery using STM32xx Series MCUs and STM32xxx Series MPUs Introduction USB Type-C Power Delivery technology simplifies the consumers' daily life. This new reversible

More information

Up to 2x 100% The power to get ahead DELL USB-C DOCKING SOLUTIONS

Up to 2x 100% The power to get ahead DELL USB-C DOCKING SOLUTIONS The power to get ahead DELL USB-C DOCKING SOLUTIONS Get up and running fast with Dell s most powerful, most compatible and most manageable docks. Up to 2x more powerful than the industry standard at 130W*

More information

USB Charging Controller. Features. General Description. Applications. Order Information

USB Charging Controller. Features. General Description. Applications. Order Information USB Charging Controller Features D+/D DCP Mode per USB Battery Charging Specification 1.2 D+/D Short Mode per Telecommunication Industry Standard YD/T1591 2009 (Chinese) Supports non BC1.2 Charging Modes

More information

USB 3.0 SATA Hard Drive Docking Station SSD / HDD with integrated Fast Charge USB Hub and UASP For SATA 6 Gbps - White

USB 3.0 SATA Hard Drive Docking Station SSD / HDD with integrated Fast Charge USB Hub and UASP For SATA 6 Gbps - White USB 3.0 SATA Hard Drive Docking Station SSD / HDD with integrated Fast Charge USB Hub and UASP For SATA 6 Gbps - White Product ID: SDOCKU33HW The SDOCKU33HW USB 3.0 Dock with Fast Charge USB hub lets you

More information

UH3234. USB-C Multiport Dock with Power Pass-Through

UH3234. USB-C Multiport Dock with Power Pass-Through UH3234 USB-C Multiport Dock with Power Pass-Through The ultra-sleek ATEN USB-C Multiport Dock with Power Pass-Through is a one-step total upgrade for your laptop that provides all the extra expansion you

More information

ROHM USB Type-C Power Delivery. Evaluation Board Manual BM92A15MWV-EVK-001

ROHM USB Type-C Power Delivery. Evaluation Board Manual BM92A15MWV-EVK-001 ROHM USB Type-C Power Delivery BM92A15MWV-EVK-001 Ver.1.00 Date:03-Mar,2017 1/8 Introduction This board is dedicated to receiving power with USB Type-C Power Delivery and requests the maximum voltage from

More information

Thunderbolt 2 Dual-Monitor Docking Station for Laptops - 2x DisplayPort - Includes TB Cable

Thunderbolt 2 Dual-Monitor Docking Station for Laptops - 2x DisplayPort - Includes TB Cable Thunderbolt 2 Dual-Monitor Docking Station for Laptops - 2x DisplayPort - Includes TB Cable StarTech ID: TB2DOCK4K2DP This Thunderbolt 2 docking station for laptops is one of the first Thunderbolt 2 docks

More information

Manual Updating To Ios 7 Ipad 3 Not Charging

Manual Updating To Ios 7 Ipad 3 Not Charging Manual Updating To Ios 7 Ipad 3 Not Charging Contents. 7. Chapter 1: ipad at a Glance. 7. ipad Overview. 8. Accessories. 9. Buttons. 11 SIM card tray. 12 Status Page 3 128 Low-battery image or Not Charging

More information

USB for Portable Devices

USB for Portable Devices 1 USB for Portable Devices 2 USB for Desktops USB was first introduced as a solution to desktop interconnectivity ity At the time, desktops had a number of different wired interfaces Printer, mouse, keyboard,

More information

USB-C to VGA Multifunction Adapter with Power Delivery and USB-A Port

USB-C to VGA Multifunction Adapter with Power Delivery and USB-A Port USB-C to VGA Multifunction Adapter with Power Delivery and USB-A Port Product ID: CDP2VGAUACP This universal multifunction adapter lets you expand the connectivity of your laptop or MacBook through USB-C.

More information

Triple-Monitor Docking Station for Laptops - USB 3.0

Triple-Monitor Docking Station for Laptops - USB 3.0 Triple-Monitor Docking Station for Laptops - USB 3.0 Product ID: USB3DOCKH2DP This triple-video docking station for laptops merges cutting-edge technology and high-quality hardware with innovative design

More information

USB dedicated charging port (DCP) controller BL2513M

USB dedicated charging port (DCP) controller BL2513M USB dedicated charging port (DCP) controller BL2513M DESCRIPTION The BL2513M is USB dedicated charging port (DCP) controllers. Applications include vehicle power charger, wall adapters with USB DCP and

More information

CEP8120 Rev 1.0, March, 2015

CEP8120 Rev 1.0, March, 2015 USB Dedicated Charging Port Controller FEATURES Supports USB DCP Shorting D+ Line to D Line per USB Battery Charging Specification, Revision 1.2 (BC1.2) Supports Shorted Mode (Shorting D+ Line to D- Line)

More information

HDMI and DVI Dual-Monitor Docking Station for Laptops - Single 4K Support - USB 3.0

HDMI and DVI Dual-Monitor Docking Station for Laptops - Single 4K Support - USB 3.0 HDMI and DVI Dual-Monitor Docking Station for Laptops - Single 4K Support - USB 3.0 StarTech ID: USB3SMDOCK4K This compact dual-monitor docking station for laptops is uniquely designed with an innovative,

More information

Pairing two devices with the Belkin QODE Ultimate Pro and Slim Style Keyboard Cases

Pairing two devices with the Belkin QODE Ultimate Pro and Slim Style Keyboard Cases Pairing two devices with the Belkin QODE Ultimate Pro and Slim Style Keyboard Cases If you are having trouble pairing a second device to the Belkin QODE Keyboard Cases, F5L171, F5L176, and F5L174, you

More information

USER GUIDE. For more information visit

USER GUIDE. For more information visit USER GUIDE For more information visit www.caldigit.com Table of Contents Section 1 : Introduction Introduction 3 System Requirements 6 In the Box 6 AV Pro 2 Diagram 7 Section 2 : Using the AV Pro 2 Connecting

More information

10-Port USB 3.0 Hub with Charge and Sync Ports - 2 x 1.5A Ports

10-Port USB 3.0 Hub with Charge and Sync Ports - 2 x 1.5A Ports 10-Port USB 3.0 Hub with Charge and Sync Ports - 2 x 1.5A Ports Product ID: ST103008U2C This 10-port USB 3.0 hub enhances your system s capabilities by providing fast-charging for mobile devices, plus

More information

USB 3.0 Dual SATA Hard Drive Docking Station with integrated Fast Charge USB Hub UASP support and Fan - Black

USB 3.0 Dual SATA Hard Drive Docking Station with integrated Fast Charge USB Hub UASP support and Fan - Black USB 3.0 Dual SATA Hard Drive Docking Station with integrated Fast Charge USB Hub UASP support and Fan - Black Product ID: SDOCK2U33HFB The SDOCK2U33HFB USB 3.0 Dual hard drive dock with Fast Charge USB

More information

Thunderbolt 2 Dual-Monitor Docking Station for Laptops - 2x DisplayPort - Includes TB Cable

Thunderbolt 2 Dual-Monitor Docking Station for Laptops - 2x DisplayPort - Includes TB Cable Thunderbolt 2 Dual-Monitor Docking Station for Laptops - 2x DisplayPort - Includes TB Cable Product ID: TB2DOCK4K2DP This Thunderbolt 2 docking station for laptops is one of the first Thunderbolt 2 docks

More information

USB to USB-C Adapter with Power Delivery - USB-C to USB-A and USB-C - USB 3.0

USB to USB-C Adapter with Power Delivery - USB-C to USB-A and USB-C - USB 3.0 USB to USB-C Adapter with Power Delivery - USB-C to USB-A and USB-C - USB 3.0 Product ID: HB30C1A1CPD Dock your USB-C laptop using a USB 3.0 Type-A laptop docking station, with additional support for Power

More information

KVM Docking Station for Two Laptops - Share Keyboard, Mouse, Dual Monitors, and Files - USB 3.0

KVM Docking Station for Two Laptops - Share Keyboard, Mouse, Dual Monitors, and Files - USB 3.0 KVM Docking Station for Two Laptops - Share Keyboard, Mouse, Dual Monitors, and Files - USB 3.0 Product ID: USB3DDOCKFT This KVM docking station for two laptops is the first of its kind. It functions similar

More information