├── .gitignore ├── HPE_FlexibleLOM_adapter_x4-cache.lib ├── HPE_FlexibleLOM_adapter_x4.kicad_pcb ├── HPE_FlexibleLOM_adapter_x4.kicad_pcb-bak ├── HPE_FlexibleLOM_adapter_x4.pro ├── HPE_FlexibleLOM_adapter_x4.sch ├── HPE_FlexibleLOM_adapter_x4.sch-bak ├── LICENSE ├── README.md ├── assets ├── HPE_FlexibleLOM_adapter_x8_top.png └── revA_photo_top.jpg ├── fp-lib-table ├── gerbers └── revA.zip ├── lib ├── Connector_PCIe.pretty │ ├── Connector_CardEdge_PCIe_x16.kicad_mod │ ├── UMAX_3126-10102T_PCIe_x8_edge_launch.kicad_mod │ └── UMAX_3126-10103T_PCIe_x16_edge_launch.kicad_mod ├── HPE_FlexibleLOM.dcm ├── HPE_FlexibleLOM.lib ├── PCIe.bck ├── PCIe.dcm └── PCIe.lib └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- 1 | fp-info-cache 2 | fab/ 3 | *.xml 4 | *.log 5 | -------------------------------------------------------------------------------- /HPE_FlexibleLOM_adapter_x4-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/HPE_FlexibleLOM_adapter_x4-cache.lib -------------------------------------------------------------------------------- /HPE_FlexibleLOM_adapter_x4.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/HPE_FlexibleLOM_adapter_x4.kicad_pcb -------------------------------------------------------------------------------- /HPE_FlexibleLOM_adapter_x4.kicad_pcb-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/HPE_FlexibleLOM_adapter_x4.kicad_pcb-bak -------------------------------------------------------------------------------- /HPE_FlexibleLOM_adapter_x4.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/HPE_FlexibleLOM_adapter_x4.pro -------------------------------------------------------------------------------- /HPE_FlexibleLOM_adapter_x4.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/HPE_FlexibleLOM_adapter_x4.sch -------------------------------------------------------------------------------- /HPE_FlexibleLOM_adapter_x4.sch-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/HPE_FlexibleLOM_adapter_x4.sch-bak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/README.md -------------------------------------------------------------------------------- /assets/HPE_FlexibleLOM_adapter_x8_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/assets/HPE_FlexibleLOM_adapter_x8_top.png -------------------------------------------------------------------------------- /assets/revA_photo_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/assets/revA_photo_top.jpg -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/fp-lib-table -------------------------------------------------------------------------------- /gerbers/revA.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/gerbers/revA.zip -------------------------------------------------------------------------------- /lib/Connector_PCIe.pretty/Connector_CardEdge_PCIe_x16.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/lib/Connector_PCIe.pretty/Connector_CardEdge_PCIe_x16.kicad_mod -------------------------------------------------------------------------------- /lib/Connector_PCIe.pretty/UMAX_3126-10102T_PCIe_x8_edge_launch.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/lib/Connector_PCIe.pretty/UMAX_3126-10102T_PCIe_x8_edge_launch.kicad_mod -------------------------------------------------------------------------------- /lib/Connector_PCIe.pretty/UMAX_3126-10103T_PCIe_x16_edge_launch.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/lib/Connector_PCIe.pretty/UMAX_3126-10103T_PCIe_x16_edge_launch.kicad_mod -------------------------------------------------------------------------------- /lib/HPE_FlexibleLOM.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /lib/HPE_FlexibleLOM.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/lib/HPE_FlexibleLOM.lib -------------------------------------------------------------------------------- /lib/PCIe.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /lib/PCIe.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /lib/PCIe.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/lib/PCIe.lib -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TobleMiner/HPE-FlexibleLOM-adapter/HEAD/sym-lib-table --------------------------------------------------------------------------------