From 50ee4b871bc9d0076cabaa5d2ea4ad1ba7b8e15a Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Mon, 25 Mar 2019 11:55:54 +0100 Subject: ninja tool: changing to generate the files in the current directory. build.ninja.j2: nits. olinuxino: Improving parsing of part values. --- demo/thirdparty/olinuxino/.gitignore | 2 +- demo/thirdparty/olinuxino/build.ninja | 54 +- .../thirdparty/olinuxino/ee/digikey/downloaded.xml | 3 + .../thirdparty/olinuxino/ee/digikey/normalized.xml | 3 + .../olinuxino/ee/digikey/search-list.xml | 3 + demo/thirdparty/olinuxino/ee/order.xml | 3 + demo/thirdparty/olinuxino/ee/reports/order.rst | 2091 ++++++ demo/thirdparty/olinuxino/ee/sch.xml | 7592 ++++++++++++++++++++ demo/thirdparty/olinuxino/py/olinuxino.py | 110 +- 9 files changed, 9814 insertions(+), 47 deletions(-) create mode 100644 demo/thirdparty/olinuxino/ee/digikey/downloaded.xml create mode 100644 demo/thirdparty/olinuxino/ee/digikey/normalized.xml create mode 100644 demo/thirdparty/olinuxino/ee/digikey/search-list.xml create mode 100644 demo/thirdparty/olinuxino/ee/order.xml create mode 100644 demo/thirdparty/olinuxino/ee/reports/order.rst create mode 100644 demo/thirdparty/olinuxino/ee/sch.xml (limited to 'demo') diff --git a/demo/thirdparty/olinuxino/.gitignore b/demo/thirdparty/olinuxino/.gitignore index a0536f7..d8f275d 100644 --- a/demo/thirdparty/olinuxino/.gitignore +++ b/demo/thirdparty/olinuxino/.gitignore @@ -1,2 +1,2 @@ -ee +.ee .ninja_* diff --git a/demo/thirdparty/olinuxino/build.ninja b/demo/thirdparty/olinuxino/build.ninja index f25e6ca..987ea82 100644 --- a/demo/thirdparty/olinuxino/build.ninja +++ b/demo/thirdparty/olinuxino/build.ninja @@ -1,4 +1,5 @@ ee = ../../../env/bin/python3 -m ee +report_dir = ee/reports sch = ../../../thirdparty/olinuxino/HARDWARE/A64-OLinuXino/A64-OLinuXino_Rev_D/A64-OlinuXino_Rev_D.sch sch_files = $ ../../../thirdparty/olinuxino/HARDWARE/A64-OLinuXino/A64-OLinuXino_Rev_D/A64-OlinuXino_Rev_D.sch $ @@ -17,40 +18,57 @@ rule kicad-gerber # mv $(GERBER_DIR)/tmp.zip $@ rule kicad-make-bom - description = kicad-make-bom $out_dir - command = $ee kicad-make-bom --sch $sch --out $out_dir $strategy + description = kicad-make-bom $out + command = $ee kicad-make-bom --sch $sch --out $out $strategy rule part-create-distributor-search-list - description = part-create-distributor-search-list distributor=$distributor $in_dir => $out_dir - command = $ee part-create-distributor-search-list --in $in_dir --out $out_dir + description = part-create-distributor-search-list distributor: $distributor + command = $ee part-create-distributor-search-list --in $in --out $out rule digikey-search-parts description = digikey-search-parts - command = $ee digikey-search-parts --in $in_dir --out $out_dir + command = $ee digikey-search-parts --in $in --out $out rule digikey-normalize-facts description = digikey-normalize-facts - command = $ee digikey-normalize-facts --in $in_dir --out $out_dir + command = $ee digikey-normalize-facts --in $in --out $out + +rule element14-search-parts + description = element14-search-parts + command = $ee element14-search-parts --in $in --out $out + +rule element14-normalize-facts + description = element14-normalize-facts + command = $ee element14-normalize-facts --in $in --out $out + +rule create-order + description = create-order + command = $ee create-order --schematic $schematic --part-db $part_dbs --out $out + +rule import-parts-yaml + description = import-parts-yaml $in + command = $ee import-parts-yaml --in $in --out $out build gerbers: phony prod/gerber.zip build prod/gerber.zip: kicad-gerber $pcb gerber_dir = prod -build ee/sch/index.xml: kicad-make-bom $sch - out_dir = ee/sch +build ee/sch.xml: kicad-make-bom $sch strategy = --strategy olinuxino.make_bom_strategy -build ee/digikey/search-list/index.xml: part-create-distributor-search-list ee/sch/index.xml - in_dir = ee/sch - out_dir = ee/digikey/search-list +# Distributor digikey +build ee/digikey/search-list.xml: part-create-distributor-search-list ee/sch.xml + distributor = digikey + +build ee/digikey/downloaded.xml: digikey-search-parts ee/digikey/search-list.xml + +build ee/digikey/normalized.xml: digikey-normalize-facts ee/digikey/downloaded.xml -build ee/digikey/downloaded/index.xml: digikey-search-parts ee/digikey/search-list/index.xml - in_dir = ee/digikey/search-list - out_dir = ee/digikey/downloaded +default ee/digikey/normalized.xml -build ee/digikey/normalized/index.xml: digikey-normalize-facts ee/digikey/downloaded/index.xml - in_dir = ee/digikey/downloaded - out_dir = ee/digikey/normalized +build ee/order.xml | $report_dir/order.rst: create-order ee/sch.xml ee/digikey/normalized.xml + schematic = ee/sch.xml + part_dbs = ee/digikey/normalized.xml -default ee/digikey/normalized/index.xml +default ee/order.xml diff --git a/demo/thirdparty/olinuxino/ee/digikey/downloaded.xml b/demo/thirdparty/olinuxino/ee/digikey/downloaded.xml new file mode 100644 index 0000000..13df815 --- /dev/null +++ b/demo/thirdparty/olinuxino/ee/digikey/downloaded.xml @@ -0,0 +1,3 @@ + + + diff --git a/demo/thirdparty/olinuxino/ee/digikey/normalized.xml b/demo/thirdparty/olinuxino/ee/digikey/normalized.xml new file mode 100644 index 0000000..13df815 --- /dev/null +++ b/demo/thirdparty/olinuxino/ee/digikey/normalized.xml @@ -0,0 +1,3 @@ + + + diff --git a/demo/thirdparty/olinuxino/ee/digikey/search-list.xml b/demo/thirdparty/olinuxino/ee/digikey/search-list.xml new file mode 100644 index 0000000..13df815 --- /dev/null +++ b/demo/thirdparty/olinuxino/ee/digikey/search-list.xml @@ -0,0 +1,3 @@ + + + diff --git a/demo/thirdparty/olinuxino/ee/order.xml b/demo/thirdparty/olinuxino/ee/order.xml new file mode 100644 index 0000000..13df815 --- /dev/null +++ b/demo/thirdparty/olinuxino/ee/order.xml @@ -0,0 +1,3 @@ + + + diff --git a/demo/thirdparty/olinuxino/ee/reports/order.rst b/demo/thirdparty/olinuxino/ee/reports/order.rst new file mode 100644 index 0000000..d0f21a3 --- /dev/null +++ b/demo/thirdparty/olinuxino/ee/reports/order.rst @@ -0,0 +1,2091 @@ +Order +===== + +Has unresolved parts: yes. + +Parts for Order +=============== + +ANT1 +---- + +Part not resolved. + +C1 +-- + +Part not resolved. + +C2 +-- + +Part not resolved. + +C3 +-- + +Part not resolved. + +C4 +-- + +Part not resolved. + +C5 +-- + +Part not resolved. + +C6 +-- + +Part not resolved. + +C7 +-- + +Part not resolved. + +C8 +-- + +Part not resolved. + +C9 +-- + +Part not resolved. + +C10 +--- + +Part not resolved. + +C11 +--- + +Part not resolved. + +C12 +--- + +Part not resolved. + +C13 +--- + +Part not resolved. + +C14 +--- + +Part not resolved. + +C15 +--- + +Part not resolved. + +C16 +--- + +Part not resolved. + +C17 +--- + +Part not resolved. + +C18 +--- + +Part not resolved. + +C19 +--- + +Part not resolved. + +C20 +--- + +Part not resolved. + +C21 +--- + +Part not resolved. + +C22 +--- + +Part not resolved. + +C23 +--- + +Part not resolved. + +C24 +--- + +Part not resolved. + +C25 +--- + +Part not resolved. + +C26 +--- + +Part not resolved. + +C27 +--- + +Part not resolved. + +C28 +--- + +Part not resolved. + +C29 +--- + +Part not resolved. + +C30 +--- + +Part not resolved. + +C31 +--- + +Part not resolved. + +C32 +--- + +Part not resolved. + +C33 +--- + +Part not resolved. + +C34 +--- + +Part not resolved. + +C35 +--- + +Part not resolved. + +C36 +--- + +Part not resolved. + +C37 +--- + +Part not resolved. + +C38 +--- + +Part not resolved. + +C39 +--- + +Part not resolved. + +C40 +--- + +Part not resolved. + +C41 +--- + +Part not resolved. + +C42 +--- + +Part not resolved. + +C43 +--- + +Part not resolved. + +C44 +--- + +Part not resolved. + +C45 +--- + +Part not resolved. + +C46 +--- + +Part not resolved. + +C47 +--- + +Part not resolved. + +C48 +--- + +Part not resolved. + +C49 +--- + +Part not resolved. + +C50 +--- + +Part not resolved. + +C51 +--- + +Part not resolved. + +C52 +--- + +Part not resolved. + +C53 +--- + +Part not resolved. + +C54 +--- + +Part not resolved. + +C55 +--- + +Part not resolved. + +C56 +--- + +Part not resolved. + +C57 +--- + +Part not resolved. + +C58 +--- + +Part not resolved. + +C59 +--- + +Part not resolved. + +C60 +--- + +Part not resolved. + +C61 +--- + +Part not resolved. + +C62 +--- + +Part not resolved. + +C63 +--- + +Part not resolved. + +C64 +--- + +Part not resolved. + +C65 +--- + +Part not resolved. + +C66 +--- + +Part not resolved. + +C67 +--- + +Part not resolved. + +C68 +--- + +Part not resolved. + +C69 +--- + +Part not resolved. + +C70 +--- + +Part not resolved. + +C71 +--- + +Part not resolved. + +C72 +--- + +Part not resolved. + +C73 +--- + +Part not resolved. + +C74 +--- + +Part not resolved. + +C75 +--- + +Part not resolved. + +C76 +--- + +Part not resolved. + +C77 +--- + +Part not resolved. + +C78 +--- + +Part not resolved. + +C79 +--- + +Part not resolved. + +C80 +--- + +Part not resolved. + +C81 +--- + +Part not resolved. + +C82 +--- + +Part not resolved. + +C83 +--- + +Part not resolved. + +C84 +--- + +Part not resolved. + +C85 +--- + +Part not resolved. + +C86 +--- + +Part not resolved. + +C87 +--- + +Part not resolved. + +C89 +--- + +Part not resolved. + +C90 +--- + +Part not resolved. + +C91 +--- + +Part not resolved. + +C92 +--- + +Part not resolved. + +C105 +---- + +Part not resolved. + +C106 +---- + +Part not resolved. + +C107 +---- + +Part not resolved. + +C109 +---- + +Part not resolved. + +C110 +---- + +Part not resolved. + +C115 +---- + +Part not resolved. + +C116 +---- + +Part not resolved. + +C117 +---- + +Part not resolved. + +C118 +---- + +Part not resolved. + +C119 +---- + +Part not resolved. + +C120 +---- + +Part not resolved. + +C121 +---- + +Part not resolved. + +C122 +---- + +Part not resolved. + +C123 +---- + +Part not resolved. + +C124 +---- + +Part not resolved. + +C125 +---- + +Part not resolved. + +C126 +---- + +Part not resolved. + +C127 +---- + +Part not resolved. + +C128 +---- + +Part not resolved. + +C129 +---- + +Part not resolved. + +C130 +---- + +Part not resolved. + +C131 +---- + +Part not resolved. + +C132 +---- + +Part not resolved. + +C133 +---- + +Part not resolved. + +C134 +---- + +Part not resolved. + +C135 +---- + +Part not resolved. + +C136 +---- + +Part not resolved. + +C137 +---- + +Part not resolved. + +C138 +---- + +Part not resolved. + +C139 +---- + +Part not resolved. + +C140 +---- + +Part not resolved. + +C141 +---- + +Part not resolved. + +C142 +---- + +Part not resolved. + +C143 +---- + +Part not resolved. + +C144 +---- + +Part not resolved. + +C145 +---- + +Part not resolved. + +C146 +---- + +Part not resolved. + +C147 +---- + +Part not resolved. + +C148 +---- + +Part not resolved. + +C149 +---- + +Part not resolved. + +C150 +---- + +Part not resolved. + +C151 +---- + +Part not resolved. + +C152 +---- + +Part not resolved. + +C153 +---- + +Part not resolved. + +C154 +---- + +Part not resolved. + +C155 +---- + +Part not resolved. + +C156 +---- + +Part not resolved. + +C157 +---- + +Part not resolved. + +C158 +---- + +Part not resolved. + +C159 +---- + +Part not resolved. + +C160 +---- + +Part not resolved. + +C161 +---- + +Part not resolved. + +C162 +---- + +Part not resolved. + +C163 +---- + +Part not resolved. + +C164 +---- + +Part not resolved. + +C165 +---- + +Part not resolved. + +C166 +---- + +Part not resolved. + +C167 +---- + +Part not resolved. + +C168 +---- + +Part not resolved. + +C169 +---- + +Part not resolved. + +C170 +---- + +Part not resolved. + +C171 +---- + +Part not resolved. + +C172 +---- + +Part not resolved. + +C173 +---- + +Part not resolved. + +C174 +---- + +Part not resolved. + +C175 +---- + +Part not resolved. + +C176 +---- + +Part not resolved. + +C177 +---- + +Part not resolved. + +C178 +---- + +Part not resolved. + +C179 +---- + +Part not resolved. + +C180 +---- + +Part not resolved. + +C181 +---- + +Part not resolved. + +C182 +---- + +Part not resolved. + +C183 +---- + +Part not resolved. + +C184 +---- + +Part not resolved. + +C185 +---- + +Part not resolved. + +C186 +---- + +Part not resolved. + +C187 +---- + +Part not resolved. + +C188 +---- + +Part not resolved. + +C189 +---- + +Part not resolved. + +C190 +---- + +Part not resolved. + +C191 +---- + +Part not resolved. + +C192 +---- + +Part not resolved. + +C193 +---- + +Part not resolved. + +C194 +---- + +Part not resolved. + +C195 +---- + +Part not resolved. + +C196 +---- + +Part not resolved. + +C197 +---- + +Part not resolved. + +C198 +---- + +Part not resolved. + +C199 +---- + +Part not resolved. + +C200 +---- + +Part not resolved. + +C201 +---- + +Part not resolved. + +C202 +---- + +Part not resolved. + +C203 +---- + +Part not resolved. + +C204 +---- + +Part not resolved. + +C205 +---- + +Part not resolved. + +C206 +---- + +Part not resolved. + +C207 +---- + +Part not resolved. + +C208 +---- + +Part not resolved. + +C209 +---- + +Part not resolved. + +C210 +---- + +Part not resolved. + +C211 +---- + +Part not resolved. + +C212 +---- + +Part not resolved. + +C213 +---- + +Part not resolved. + +C214 +---- + +Part not resolved. + +C215 +---- + +Part not resolved. + +C216 +---- + +Part not resolved. + +C217 +---- + +Part not resolved. + +C218 +---- + +Part not resolved. + +C219 +---- + +Part not resolved. + +CHGLED1 +------- + +Part not resolved. + +D1 +-- + +Part not resolved. + +D2 +-- + +Part not resolved. + +D3 +-- + +Part not resolved. + +D4 +-- + +Part not resolved. + +D5 +-- + +Part not resolved. + +DBG_UART1 +--------- + +Part not resolved. + +DDR-VCC1 +-------- + +Part not resolved. + +FET1 +---- + +Part not resolved. + +FET2 +---- + +Part not resolved. + +FUSE1 +----- + +Part not resolved. + +FUSE2 +----- + +Part not resolved. + +GND1 +---- + +Part not resolved. + +GNDA1 +----- + +Part not resolved. + +GPIO1 +----- + +Part not resolved. + +GPIO_LED1 +--------- + +Part not resolved. + +HDMI1 +----- + +Part not resolved. + +HEADPHONES/LINEOUT1 +------------------- + +Part not resolved. + +HPHONEOUTL/LINEOUTL1 +-------------------- + +Part not resolved. + +HPHONEOUTR/LINEOUTR1 +-------------------- + +Part not resolved. + +HSIC1 +----- + +Part not resolved. + +HSIC_E1 +------- + +Part not resolved. + +IPS1 +---- + +Part not resolved. + +L1 +-- + +Part not resolved. + +L2 +-- + +Part not resolved. + +L3 +-- + +Part not resolved. + +L4 +-- + +Part not resolved. + +L5 +-- + +Part not resolved. + +L6 +-- + +Part not resolved. + +L8 +-- + +Part not resolved. + +L14 +--- + +Part not resolved. + +L15 +--- + +Part not resolved. + +L16 +--- + +Part not resolved. + +L17 +--- + +Part not resolved. + +L18 +--- + +Part not resolved. + +L19 +--- + +Part not resolved. + +L20 +--- + +Part not resolved. + +L21 +--- + +Part not resolved. + +L23 +--- + +Part not resolved. + +L24 +--- + +Part not resolved. + +LAN1 +---- + +Part not resolved. + +LCD_CON1 +-------- + +Part not resolved. + +LINEINL/MICIN2 +-------------- + +Part not resolved. + +LINEINR/MICIN1 +-------------- + +Part not resolved. + +LIPO_BAT1 +--------- + +Part not resolved. + +MIC/LINEIN1 +----------- + +Part not resolved. + +MICRO_SD1 +--------- + +Part not resolved. + +MIPI-DSI1 +--------- + +Part not resolved. + +Mounting_hole1 +-------------- + +Part not resolved. + +Mounting_hole2 +-------------- + +Part not resolved. + +Mounting_hole3 +-------------- + +Part not resolved. + +NAND_E1 +------- + +Part not resolved. + +PHYRST1 +------- + +Part not resolved. + +PWR1 +---- + +Part not resolved. + +PWRLED1 +------- + +Part not resolved. + +PWRON1 +------ + +Part not resolved. + +PWR_PC1 +------- + +Part not resolved. + +Q2 +-- + +Part not resolved. + +Q3 +-- + +Part not resolved. + +Q4 +-- + +Part not resolved. + +R1 +-- + +Part not resolved. + +R2 +-- + +Part not resolved. + +R3 +-- + +Part not resolved. + +R4 +-- + +Part not resolved. + +R5 +-- + +Part not resolved. + +R6 +-- + +Part not resolved. + +R7 +-- + +Part not resolved. + +R8 +-- + +Part not resolved. + +R9 +-- + +Part not resolved. + +R10 +--- + +Part not resolved. + +R11 +--- + +Part not resolved. + +R12 +--- + +Part not resolved. + +R13 +--- + +Part not resolved. + +R14 +--- + +Part not resolved. + +R15 +--- + +Part not resolved. + +R16 +--- + +Part not resolved. + +R17 +--- + +Part not resolved. + +R18 +--- + +Part not resolved. + +R19 +--- + +Part not resolved. + +R20 +--- + +Part not resolved. + +R21 +--- + +Part not resolved. + +R22 +--- + +Part not resolved. + +R23 +--- + +Part not resolved. + +R24 +--- + +Part not resolved. + +R25 +--- + +Part not resolved. + +R26 +--- + +Part not resolved. + +R27 +--- + +Part not resolved. + +R28 +--- + +Part not resolved. + +R29 +--- + +Part not resolved. + +R30 +--- + +Part not resolved. + +R31 +--- + +Part not resolved. + +R32 +--- + +Part not resolved. + +R33 +--- + +Part not resolved. + +R34 +--- + +Part not resolved. + +R35 +--- + +Part not resolved. + +R36 +--- + +Part not resolved. + +R37 +--- + +Part not resolved. + +R38 +--- + +Part not resolved. + +R39 +--- + +Part not resolved. + +R40 +--- + +Part not resolved. + +R41 +--- + +Part not resolved. + +R42 +--- + +Part not resolved. + +R43 +--- + +Part not resolved. + +R44 +--- + +Part not resolved. + +R45 +--- + +Part not resolved. + +R46 +--- + +Part not resolved. + +R47 +--- + +Part not resolved. + +R48 +--- + +Part not resolved. + +R49 +--- + +Part not resolved. + +R50 +--- + +Part not resolved. + +R51 +--- + +Part not resolved. + +R52 +--- + +Part not resolved. + +R53 +--- + +Part not resolved. + +R54 +--- + +Part not resolved. + +R55 +--- + +Part not resolved. + +R56 +--- + +Part not resolved. + +R57 +--- + +Part not resolved. + +R58 +--- + +Part not resolved. + +R59 +--- + +Part not resolved. + +R60 +--- + +Part not resolved. + +R61 +--- + +Part not resolved. + +R62 +--- + +Part not resolved. + +R63 +--- + +Part not resolved. + +R64 +--- + +Part not resolved. + +R65 +--- + +Part not resolved. + +R66 +--- + +Part not resolved. + +R70 +--- + +Part not resolved. + +R71 +--- + +Part not resolved. + +R74 +--- + +Part not resolved. + +R75 +--- + +Part not resolved. + +R76 +--- + +Part not resolved. + +R77 +--- + +Part not resolved. + +R78 +--- + +Part not resolved. + +R79 +--- + +Part not resolved. + +R80 +--- + +Part not resolved. + +R81 +--- + +Part not resolved. + +R82 +--- + +Part not resolved. + +R83 +--- + +Part not resolved. + +R84 +--- + +Part not resolved. + +R85 +--- + +Part not resolved. + +R86 +--- + +Part not resolved. + +R87 +--- + +Part not resolved. + +R88 +--- + +Part not resolved. + +R89 +--- + +Part not resolved. + +R90 +--- + +Part not resolved. + +R91 +--- + +Part not resolved. + +R92 +--- + +Part not resolved. + +R93 +--- + +Part not resolved. + +R94 +--- + +Part not resolved. + +R95 +--- + +Part not resolved. + +R96 +--- + +Part not resolved. + +R97 +--- + +Part not resolved. + +R98 +--- + +Part not resolved. + +R99 +--- + +Part not resolved. + +R100 +---- + +Part not resolved. + +R101 +---- + +Part not resolved. + +R102 +---- + +Part not resolved. + +R103 +---- + +Part not resolved. + +R104 +---- + +Part not resolved. + +R105 +---- + +Part not resolved. + +R106 +---- + +Part not resolved. + +R107 +---- + +Part not resolved. + +R108 +---- + +Part not resolved. + +R109 +---- + +Part not resolved. + +R110 +---- + +Part not resolved. + +R111 +---- + +Part not resolved. + +R112 +---- + +Part not resolved. + +R113 +---- + +Part not resolved. + +R114 +---- + +Part not resolved. + +R115 +---- + +Part not resolved. + +R116 +---- + +Part not resolved. + +R117 +---- + +Part not resolved. + +R118 +---- + +Part not resolved. + +R119 +---- + +Part not resolved. + +R120 +---- + +Part not resolved. + +RESET1 +------ + +Part not resolved. + +RM1 +--- + +Part not resolved. + +RM2 +--- + +Part not resolved. + +RM3 +--- + +Part not resolved. + +RM4 +--- + +Part not resolved. + +RM5 +--- + +Part not resolved. + +RM7 +--- + +Part not resolved. + +RM8 +--- + +Part not resolved. + +RM9 +--- + +Part not resolved. + +RM12 +---- + +Part not resolved. + +RM14 +---- + +Part not resolved. + +RM15 +---- + +Part not resolved. + +T1 +-- + +Part not resolved. + +U1 +-- + +Part not resolved. + +U1 +-- + +Part not resolved. + +U1 +-- + +Part not resolved. + +U1 +-- + +Part not resolved. + +U2 +-- + +Part not resolved. + +U3 +-- + +Part not resolved. + +U4 +-- + +Part not resolved. + +U5 +-- + +Part not resolved. + +U6 +-- + +Part not resolved. + +U7 +-- + +Part not resolved. + +U8 +-- + +Part not resolved. + +U9 +-- + +Part not resolved. + +U10 +--- + +Part not resolved. + +U11 +--- + +Part not resolved. + +U12 +--- + +Part not resolved. + +U13 +--- + +Part not resolved. + +U14 +--- + +Part not resolved. + +U15 +--- + +Part not resolved. + +UBOOT1 +------ + +Part not resolved. + +UEXT1 +----- + +Part not resolved. + +USB1 +---- + +Part not resolved. + +USB-OTG1 +-------- + +Part not resolved. + +VCC-PC1 +------- + +Part not resolved. + +VCC-PL1 +------- + +Part not resolved. + +VR1 +--- + +Part not resolved. + +5V_E1 +----- + +Part not resolved. + + +Part details +============ diff --git a/demo/thirdparty/olinuxino/ee/sch.xml b/demo/thirdparty/olinuxino/ee/sch.xml new file mode 100644 index 0000000..f44b39c --- /dev/null +++ b/demo/thirdparty/olinuxino/ee/sch.xml @@ -0,0 +1,7592 @@ + + + + + + ANT1 + + + + + http://purl.org/ee/fact-type/value + PCB_WIFI_ANT + + + + + + + C1 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C2 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C3 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C4 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C5 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C6 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C7 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C8 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C9 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C10 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C11 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C12 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C13 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C14 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C15 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C16 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C17 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C18 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C19 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C20 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C21 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C22 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C23 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C24 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C25 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C26 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C27 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C28 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C29 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C30 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C31 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C32 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C33 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C34 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C35 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C36 + + + + + http://purl.org/ee/fact-type/capacitance + 22uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C37 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C38 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C39 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C40 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C41 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C42 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C43 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C44 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C45 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C46 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C47 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C48 + + + + + http://purl.org/ee/fact-type/capacitance + 33pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C49 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C50 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C51 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C52 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C53 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C54 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C55 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C56 + + + + + http://purl.org/ee/fact-type/capacitance + 2.2uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C57 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C58 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C59 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C60 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C61 + + + + + http://purl.org/ee/fact-type/capacitance + 2.2uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C62 + + + + + http://purl.org/ee/fact-type/capacitance + 33pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C63 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C64 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C65 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C66 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C67 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C68 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C69 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C70 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C71 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C72 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C73 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C74 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C75 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C76 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C77 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C78 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C79 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C80 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C81 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C82 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C83 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C84 + + + + + http://purl.org/ee/fact-type/capacitance + 33pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C85 + + + + + http://purl.org/ee/fact-type/capacitance + 33pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C86 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C87 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C89 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C90 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C91 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C92 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C105 + + + + + http://purl.org/ee/fact-type/capacitance + 33pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C106 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C107 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C109 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C110 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C115 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C116 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C117 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C118 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C119 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C120 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C121 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C122 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C123 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C124 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C125 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C126 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C127 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C128 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C129 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C130 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C131 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C132 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C133 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C134 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C135 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C136 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C137 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C138 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C139 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C140 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C141 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C142 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C143 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C144 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C145 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C146 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C147 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C148 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C149 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C150 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C151 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C152 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C153 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C154 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C155 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C156 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C157 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C158 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C159 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C160 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C161 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C162 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C163 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C164 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C165 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C166 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C167 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C168 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C169 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C170 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C171 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C172 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C173 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C174 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C175 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C176 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C177 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C178 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C179 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C180 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C181 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C182 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C183 + + + + + http://purl.org/ee/fact-type/capacitance + 22pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C184 + + + + + http://purl.org/ee/fact-type/capacitance + 22pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C185 + + + + + http://purl.org/ee/fact-type/capacitance + 33pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C186 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C187 + + + + + http://purl.org/ee/fact-type/capacitance + 33pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C188 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C189 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C190 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C191 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C192 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C193 + + + + + http://purl.org/ee/fact-type/capacitance + 1nF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C194 + + + + + http://purl.org/ee/fact-type/capacitance + 10uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C195 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C196 + + + + + http://purl.org/ee/fact-type/capacitance + 1nF + + + http://purl.org/ee/fact-type/voltage + 2kV + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/rs-198 class 2 + X7R + + + + + + + C197 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C198 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + C199 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C200 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C201 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C202 + + + + + http://purl.org/ee/fact-type/capacitance + 47uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C203 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C204 + + + + + http://purl.org/ee/fact-type/capacitance + 22uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C205 + + + + + http://purl.org/ee/fact-type/capacitance + 22uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C206 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C207 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C208 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C209 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C210 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C211 + + + + + http://purl.org/ee/fact-type/capacitance + 1uF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C212 + + + + + http://purl.org/ee/fact-type/capacitance + 27pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C213 + + + + + http://purl.org/ee/fact-type/capacitance + 27pF + + + http://purl.org/ee/fact-type/voltage + 50V + + + http://purl.org/ee/fact-type/value-tolerance + 5% + + + + + + + C214 + + + + + http://purl.org/ee/fact-type/capacitance + 22uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C215 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C216 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C217 + + + + + http://purl.org/ee/fact-type/capacitance + 100nF + + + http://purl.org/ee/fact-type/voltage + 10V + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + C218 + + + + + http://purl.org/ee/fact-type/capacitance + 22uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + C219 + + + + + http://purl.org/ee/fact-type/capacitance + 22uF + + + http://purl.org/ee/fact-type/voltage + 6.3V + + + http://purl.org/ee/fact-type/value-tolerance + 20% + + + + + + + CHGLED1 + + + + + http://purl.org/ee/fact-type/value + LED/YELLOW/0603 + + + + + + + D1 + + + + + http://purl.org/ee/fact-type/value + SMBJ6.0A + + + + + + + D2 + + + + + http://purl.org/ee/fact-type/value + 1N5822/SS34/SMA + + + + + + + D3 + + + + + http://purl.org/ee/fact-type/value + 1N5822/SS34/SMA + + + + + + + D4 + + + + + http://purl.org/ee/fact-type/value + 1N5819(S4SOD-123) + + + + + + + D5 + + + + + http://purl.org/ee/fact-type/value + 1N4007/SMA + + + + + + + DBG_UART1 + + + + + http://purl.org/ee/fact-type/value + HN1x3 + + + + + + + DDR-VCC1 + + + + + http://purl.org/ee/fact-type/value + TESTPAD + + + + + + + FET1 + + + + + http://purl.org/ee/fact-type/value + BSS138(SOT23-3) + + + + + + + FET2 + + + + + http://purl.org/ee/fact-type/value + IRLML6402(SOT-23) + + + + + + + FUSE1 + + + + + http://purl.org/ee/fact-type/value + FSMD035 + + + + + + + FUSE2 + + + + + http://purl.org/ee/fact-type/value + 5025 + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + GND1 + + + + + http://purl.org/ee/fact-type/value + TESTPAD + + + + + + + GNDA1 + + + + + http://purl.org/ee/fact-type/value + TESTPAD + + + + + + + GPIO1 + + + + + http://purl.org/ee/fact-type/value + HN2x20 + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + GPIO_LED1 + + + + + http://purl.org/ee/fact-type/value + LED/Red/0603 + + + + + + + HDMI1 + + + + + http://purl.org/ee/fact-type/value + HDMI-SWM-19 + + + + + + + HEADPHONES/LINEOUT1 + + + + + http://purl.org/ee/fact-type/value + SCJ325P00XG0B02G + + + + + + + HPHONEOUTL/LINEOUTL1 + + + + + http://purl.org/ee/fact-type/value + Soldered(1-2);Opened(2-3) + + + + + + + HPHONEOUTR/LINEOUTR1 + + + + + http://purl.org/ee/fact-type/value + Soldered(1-2);Opened(2-3) + + + + + + + HSIC1 + + + + + http://purl.org/ee/fact-type/value + B4B-PH-K-S + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + HSIC_E1 + + + + + http://purl.org/ee/fact-type/value + Opened + + + + + + + IPS1 + + + + + http://purl.org/ee/fact-type/value + TESTPAD + + + + + + + L1 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L2 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L3 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L4 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L5 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L6 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L8 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L14 + + + + + http://purl.org/ee/fact-type/value + SWPA3015S1R5NT(1.5uH/2.30A/DCR<0.1R/CD32) + + + + + + + L15 + + + + + http://purl.org/ee/fact-type/value + SWPA4018S1R5NT(1.5uH/3.35A/DCR<0.1R/CD43) + + + + + + + L16 + + + + + http://purl.org/ee/fact-type/value + 2.2uH/3A/YS75/7x8 + + + + + + + L17 + + + + + http://purl.org/ee/fact-type/value + SWPA4018S1R5NT(1.5uH/3.35A/DCR<0.1R/CD43) + + + + + + + L18 + + + + + http://purl.org/ee/fact-type/value + SWPA4018S1R5NT(1.5uH/3.35A/DCR<0.1R/CD43) + + + + + + + L19 + + + + + http://purl.org/ee/fact-type/value + SWPA3015S1R5NT(1.5uH/2.30A/DCR<0.1R/CD32) + + + + + + + L20 + + + + + http://purl.org/ee/fact-type/value + SWPA3015S1R5NT(1.5uH/2.30A/DCR<0.1R/CD32) + + + + + + + L21 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L23 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + L24 + + + + + http://purl.org/ee/fact-type/value + FB0805/600R/2A + + + + + + + LAN1 + + + + + http://purl.org/ee/fact-type/value + TM211Q01FM22 + + + + + + + LCD_CON1 + + + + + http://purl.org/ee/fact-type/value + FPV-WZA21-40-LF + + + + + + + LINEINL/MICIN2 + + + + + http://purl.org/ee/fact-type/value + Opened(2-3);Soldered(1-2) + + + + + + + LINEINR/MICIN1 + + + + + http://purl.org/ee/fact-type/value + Opened(2-3);Soldered(1-2) + + + + + + + LIPO_BAT1 + + + + + http://purl.org/ee/fact-type/value + DW02R + + + + + + + MIC/LINEIN1 + + + + + http://purl.org/ee/fact-type/value + SCJ325P00XG0B02G + + + + + + + MICRO_SD1 + + + + + http://purl.org/ee/fact-type/value + MICRO_SD(TFC-WPAPR-08) + + + + + + + MIPI-DSI1 + + + + + http://purl.org/ee/fact-type/value + FPV-WZA21-20-LF + + + + + + + Mounting_hole1 + + + + + http://purl.org/ee/fact-type/value + Mounting_hole + + + + + + + Mounting_hole2 + + + + + http://purl.org/ee/fact-type/value + Mounting_hole + + + + + + + Mounting_hole3 + + + + + http://purl.org/ee/fact-type/value + Mounting_hole + + + + + + + NAND_E1 + + + + + http://purl.org/ee/fact-type/value + Unsoldered + + + + + + + PHYRST1 + + + + + http://purl.org/ee/fact-type/value + HN1x2(Opened) + + + + + + + PWR1 + + + + + http://purl.org/ee/fact-type/value + PWRJ-2mm(YDJ-1134) + + + + + + + PWRLED1 + + + + + http://purl.org/ee/fact-type/value + LED/Red/0603 + + + + + + + PWRON1 + + + + + http://purl.org/ee/fact-type/value + IT-1185AU2-160G-G-TR + + + + + + + PWR_PC1 + + + + + http://purl.org/ee/fact-type/value + Opened(2-3);Soldered(1-2) + + + + + + + Q2 + + + + + http://purl.org/ee/fact-type/value + Q32.768kHz/12.5pF/20ppm/4P/SMD8038 + + + + + + + Q3 + + + + + http://purl.org/ee/fact-type/value + Q24MHZ/20pF/20ppm/2P/5x3.2mm + + + + + + + Q4 + + + + + http://purl.org/ee/fact-type/value + Q25MHz/20pF/20ppm/2P/5x3.2mm + + + + + + + R1 + + + + + http://purl.org/ee/fact-type/resistance + 2 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R2 + + + + + http://purl.org/ee/fact-type/resistance + 100 + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R3 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R4 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R5 + + + + + http://purl.org/ee/fact-type/resistance + 2 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R6 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R7 + + + + + http://purl.org/ee/fact-type/resistance + 243 + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R8 + + + + + http://purl.org/ee/fact-type/resistance + 2 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R9 + + + + + http://purl.org/ee/fact-type/resistance + 243 + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R10 + + + + + http://purl.org/ee/fact-type/resistance + 243 + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R11 + + + + + http://purl.org/ee/fact-type/resistance + 2 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R12 + + + + + http://purl.org/ee/fact-type/resistance + 2 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R13 + + + + + http://purl.org/ee/fact-type/resistance + 243 + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R14 + + + + + http://purl.org/ee/fact-type/resistance + 243 + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R15 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R16 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R17 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R18 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R19 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R20 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R21 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R22 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R23 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R24 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R25 + + + + + http://purl.org/ee/fact-type/resistance + 470 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R26 + + + + + http://purl.org/ee/fact-type/resistance + 2 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R27 + + + + + http://purl.org/ee/fact-type/resistance + 200 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R28 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R29 + + + + + http://purl.org/ee/fact-type/resistance + 2 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R30 + + + + + http://purl.org/ee/fact-type/resistance + 100 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R31 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R32 + + + + + http://purl.org/ee/fact-type/resistance + 1 M + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R33 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R34 + + + + + http://purl.org/ee/fact-type/resistance + 0 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R35 + + + + + http://purl.org/ee/fact-type/resistance + 100 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R36 + + + + + http://purl.org/ee/fact-type/resistance + 0 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R37 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R38 + + + + + http://purl.org/ee/fact-type/resistance + 4.7 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R39 + + + + + http://purl.org/ee/fact-type/resistance + 510 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R40 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R41 + + + + + http://purl.org/ee/fact-type/resistance + 13 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R42 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R43 + + + + + http://purl.org/ee/fact-type/resistance + 510 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R44 + + + + + http://purl.org/ee/fact-type/resistance + 510 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R45 + + + + + http://purl.org/ee/fact-type/resistance + 510 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R46 + + + + + http://purl.org/ee/fact-type/resistance + 27 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R47 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R48 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R49 + + + + + http://purl.org/ee/fact-type/resistance + 3.92 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R50 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R51 + + + + + http://purl.org/ee/fact-type/resistance + 4.7 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R52 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R53 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R54 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R55 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R56 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R57 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R58 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R59 + + + + + http://purl.org/ee/fact-type/resistance + 47 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R60 + + + + + http://purl.org/ee/fact-type/resistance + 0 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R61 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R62 + + + + + http://purl.org/ee/fact-type/resistance + 0 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R63 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R64 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R65 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R66 + + + + + http://purl.org/ee/fact-type/resistance + 0 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R70 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R71 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R74 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R75 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R76 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R77 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R78 + + + + + http://purl.org/ee/fact-type/resistance + 10 m + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + http://purl.org/ee/fact-type/imperial-footprint-size + 1206 + + + + + + + R79 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R80 + + + + + http://purl.org/ee/fact-type/resistance + 8.25 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R81 + + + + + http://purl.org/ee/fact-type/resistance + 1.1 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R82 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R83 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R84 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R85 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R86 + + + + + http://purl.org/ee/fact-type/resistance + 0 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R87 + + + + + http://purl.org/ee/fact-type/resistance + 0 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R88 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R89 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R90 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R91 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R92 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R93 + + + + + http://purl.org/ee/fact-type/resistance + 10 M + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R94 + + + + + http://purl.org/ee/fact-type/resistance + 0 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R95 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R96 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R97 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R98 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R99 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R100 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R101 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R102 + + + + + http://purl.org/ee/fact-type/resistance + 2.2 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R103 + + + + + http://purl.org/ee/fact-type/resistance + 100 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R104 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R105 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R106 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R107 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R108 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R109 + + + + + http://purl.org/ee/fact-type/resistance + 22 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R110 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R111 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R112 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R113 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R114 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R115 + + + + + http://purl.org/ee/fact-type/resistance + 12.1 k + + + http://purl.org/ee/fact-type/value-tolerance + 1% + + + + + + + R116 + + + + + http://purl.org/ee/fact-type/resistance + 100 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R117 + + + + + http://purl.org/ee/fact-type/resistance + 1 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R118 + + + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + R119 + + + + + http://purl.org/ee/fact-type/resistance + 10 k + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + R120 + + + + + http://purl.org/ee/fact-type/resistance + 120 + + + http://purl.org/ee/fact-type/value-tolerance + 10% + + + + + + + RESET1 + + + + + http://purl.org/ee/fact-type/value + IT-1185AU2-160G-G-TR + + + + + + + RM1 + + + + + http://purl.org/ee/fact-type/value + RA1206_(4X0603)_4B8_10k + + + + + + + RM2 + + + + + http://purl.org/ee/fact-type/value + RA0805_(4X0402)_22R + + + + + + + RM3 + + + + + http://purl.org/ee/fact-type/value + RA0805_(4X0402)_22R + + + + + + + RM4 + + + + + http://purl.org/ee/fact-type/value + RA1206_(4X0603)_4B8_10k + + + + + + + RM5 + + + + + http://purl.org/ee/fact-type/value + RA0805_(4X0402)_22R + + + + + + + RM7 + + + + + http://purl.org/ee/fact-type/value + RA1206_(4x0603)_4B8_100k + + + + + + + RM8 + + + + + http://purl.org/ee/fact-type/value + RA1206_(4x0603)_4B8_4.7k + + + + + + + RM9 + + + + + http://purl.org/ee/fact-type/value + RA1206_(4x0603)_4B8_100k + + + + + + + RM12 + + + + + http://purl.org/ee/fact-type/value + RA1206_(4x0603)_4B8_100k + + + + + + + RM14 + + + + + http://purl.org/ee/fact-type/value + RA0805_(4X0402)_22R + + + + + + + RM15 + + + + + http://purl.org/ee/fact-type/value + RA1206_(4x0603)_4B8_22R + + + + + + + T1 + + + + + http://purl.org/ee/fact-type/value + WPM1481-6/TR(DFN2X2-6L) + + + + + + + U1 + + + + + http://purl.org/ee/fact-type/value + AllWinner-A64(FBGA396) + + + + + + + U1 + + + + + http://purl.org/ee/fact-type/value + AllWinner-A64(FBGA396) + + + + + + + U1 + + + + + http://purl.org/ee/fact-type/value + AllWinner-A64(FBGA396) + + + + + + + U1 + + + + + http://purl.org/ee/fact-type/value + AllWinner-A64(FBGA396) + + + + + + + U2 + + + + + http://purl.org/ee/fact-type/value + K4B4G1646Q-HYK0(FBGA-96_256Mx16_DDR3-1600_11-11-11) + + + + + + + U3 + + + + + http://purl.org/ee/fact-type/value + K4B4G1646Q-HYK0(FBGA-96_256Mx16_DDR3-1600_11-11-11) + + + + + + + U4 + + + + + http://purl.org/ee/fact-type/value + H27UBG8T2BTR-BC(TSOP48) + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + U5 + + + + + http://purl.org/ee/fact-type/value + MTFC4GACAANA-4M_IT(TBGA100) + + + + + + + U6 + + + + + http://purl.org/ee/fact-type/value + SY6280AAC(SOT23-5) + + + + + + + U7 + + + + + http://purl.org/ee/fact-type/value + RCLAMP0524P(SLP2510P8) + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + U8 + + + + + http://purl.org/ee/fact-type/value + RCLAMP0524P(SLP2510P8) + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + U9 + + + + + http://purl.org/ee/fact-type/value + SY6280AAC(SOT23-5) + + + + + + + U10 + + + + + http://purl.org/ee/fact-type/value + RCLAMP0524P(SLP2510P8) + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + U11 + + + + + http://purl.org/ee/fact-type/value + RTL8723BS(ComboModule) + + + + + + + U12 + + + + + http://purl.org/ee/fact-type/value + W25Q128FVSIG(EN25Q64-104HIP) + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + U13 + + + + + http://purl.org/ee/fact-type/value + MT3608(SOT23-6) + + + + + + + U14 + + + + + http://purl.org/ee/fact-type/value + AXP803(QFN68_8x8mm) + + + + + + + U15 + + + + + http://purl.org/ee/fact-type/value + KSZ9031RNXCC(QFN48_1DRILL(PADPITCH-0.5MM)) + + + + + + + UBOOT1 + + + + + http://purl.org/ee/fact-type/value + IT-1185AU2-160G-G-TR + + + + + + + UEXT1 + + + + + http://purl.org/ee/fact-type/value + HN2x5 + + + http://purl.org/ee/fact-type/place-part + no + + + + + + + USB1 + + + + + http://purl.org/ee/fact-type/value + USB_A_VERTICAL + + + + + + + USB-OTG1 + + + + + http://purl.org/ee/fact-type/value + MICRO_USB/MISB-SWMM-5B_LF + + + + + + + VCC-PC1 + + + + + http://purl.org/ee/fact-type/value + TESTPAD + + + + + + + VCC-PL1 + + + + + http://purl.org/ee/fact-type/value + TESTPAD + + + + + + + VR1 + + + + + http://purl.org/ee/fact-type/value + AMS1117(ADJ) + + + + + + + 5V_E1 + + + + + http://purl.org/ee/fact-type/value + Opened + + + + + diff --git a/demo/thirdparty/olinuxino/py/olinuxino.py b/demo/thirdparty/olinuxino/py/olinuxino.py index 2153613..0b6fd1e 100644 --- a/demo/thirdparty/olinuxino/py/olinuxino.py +++ b/demo/thirdparty/olinuxino/py/olinuxino.py @@ -1,55 +1,109 @@ import re +from ee import EeException, EeVal from ee.kicad import Component from ee.kicad.make_bom import MakeBomStrategy -from ee.xml import types +from ee.xml import types, bom_file_utils +from ee.part import fact_keys from ee.xml.bom_file_utils import facts +c_value_re = re.compile("([0-9]+\\.?[0-9]*[mupn]F)/([0-9]+\\.?[0-9]*[k]?V)/([0-9]+)%(?:/([A-Z][0-9][A-Z]))?") +r_value_re = re.compile(r"([^/]+)(?:/([^/]+)(?:/([^/]+))?)?") + class OlinuxinoMakeBomStrategy(MakeBomStrategy): + + @staticmethod + def set_default(fs, fact_key: str, value): + fact = bom_file_utils.find_fact(fs, fact_key) + if fact: + return + + fs.add_fact(types.Fact(key=fact_key, value=value)) + def process_part(self, component: Component, part: types.Part): + debug = False + print(component.ref) print(" value={}".format(component.value)) print(" footprint={}".format(component.footprint)) - if component.ref_type == "C": - v = component.value + v = component.value - if v == "NA": - print(" NA".format()) - return part + fp_lib, fp_part = None, None + if component.footprint: + s = component.footprint.split(":") + fp_lib, fp_part = s[0], s[1] + + fs = facts(part, create=True) - na = v.startswith("NA(") and v.endswith(")") - v = v[3:-1] if na else v + na = v.startswith("NA(") and v.endswith(")") or v == "NA" + if na: + v = v[3:-1] - r = re.compile("([0-9]+\\.?[0-9]*[pnum]F)/([0-9]+\\.?[0-9]*[k]?V)/([0-9]+%)(?:/([A-Z][0-9][A-Z]))?") + if v == "": + pass + elif component.ref_type == "C": + m = c_value_re.match(v) - m = r.match(v) + if not m: + raise EeException("Bad value: {}".format(v)) - if m: - capacitance = m.group(1) + " F" - voltage = m.group(2) + " V" - tolerance = m.group(3) + "%" - derating = m.group(4) + capacitance = m.group(1) + voltage = m.group(2) + tolerance = str(int(m.group(3))) + "%" + rs_198_class_2 = m.group(4) - print(" capacitance {}".format(capacitance)) - print(" voltage {}".format(voltage)) - print(" tolerance {}".format(tolerance)) - if derating: - print(" derating {}".format(derating)) + if debug: + print(" capacitance {}".format(capacitance)) + print(" voltage {}".format(voltage)) + print(" tolerance {}".format(tolerance)) + if rs_198_class_2: + print(" rs_198_class_2 {}".format(rs_198_class_2)) if na: print(" NA".format()) - fs = facts(part, create=True) - fs.add_fact(types.Fact(key="capacitance", value=capacitance)) - fs.add_fact(types.Fact(key="max_voltage", value=voltage)) - fs.add_fact(types.Fact(key="tolerance", value=tolerance)) - if derating: - fs.add_fact(types.Fact(key="derating", value=derating)) + fs.add_fact(types.Fact(key=fact_keys.capacitance, value=capacitance)) + fs.add_fact(types.Fact(key=fact_keys.max_voltage, value=voltage)) + fs.add_fact(types.Fact(key=fact_keys.value_tolerance, value=tolerance)) + if rs_198_class_2: + fs.add_fact(types.Fact(key=fact_keys.rs_198_class_2, value=rs_198_class_2)) + + elif component.ref_type == "R": + # NA + # NA(510R) + # NA(243R/1%) + # 4.7k + # 8.25k/1% + # 120R + # 0R(Board_Mounted) + # 0.01R/1%/1206 + + match = r_value_re.match(v) + if not match: + return part + + resistance, tolerance, size = match.groups() + if resistance.endswith("R"): + resistance = resistance[:-1] + + resistance = str(EeVal.parse(resistance)) + + fs.add_fact(types.Fact(key=fact_keys.resistance, value=resistance)) + if tolerance: + fs.add_fact(types.Fact(key=fact_keys.value_tolerance, value=tolerance)) + if size: + fs.add_fact(types.Fact(key=fact_keys.imperial_footprint_size, value=size)) + + self.set_default(fs, fact_keys.value_tolerance, "10%") + else: + fs.add_fact(types.Fact(key=fact_keys.value, value=v)) - else: - print("FAIL") + if na: + fs.add_fact(types.Fact(key=fact_keys.place_part, value="no")) + # raise EeException("Unknown component kind: ref={}, ref type:{}, value={}, fp_lib={}, fp_part={}". + # format(component.ref, component.ref_type, v, fp_lib, fp_part)) return part -- cgit v1.2.3