├── .gitattributes ├── .gitignore ├── .gitmodules ├── AUTHORS ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── documents ├── README.md ├── graphics │ ├── logo │ │ ├── Kastelo-Logo-Vertical.jpg │ │ ├── Kastelo-Logo.ai │ │ ├── Kastelo-Logo.jpg │ │ ├── Kastelo-Logos.svg │ │ ├── Kastelo-Symbol.svg │ │ ├── Kastelo-Text.svg │ │ └── Kastelo.png │ └── promo │ │ └── README.md ├── legal │ ├── .gitignore │ ├── README.md │ ├── disclaimer-badgehcpp.fodt │ ├── disclaimer-badgehcpp.md │ ├── disclaimer-badgenfc.fodt │ ├── disclaimer-badgenfc.md │ ├── disclaimer-cefcc.md │ └── disclaimer-wallet.md └── sphinx │ ├── Makefile │ ├── README.md │ └── source │ ├── application_environment.rst │ ├── conf.py │ ├── getting_started.rst │ ├── hardware_architecture.rst │ ├── index.rst │ ├── making_payments.rst │ ├── receiving_payments.rst │ ├── security_philosophy.rst │ └── troubleshooting.rst ├── enclosure ├── breakneck │ ├── .gitignore │ ├── COPYING.txt │ ├── COPYING.url │ ├── bneckbuttons.fcstd │ ├── bneckfdmpla.fcstd │ ├── bneckfdmpla.txt │ ├── bnecklidtop.cdr │ ├── bneckmoldpc.fcstd │ ├── fabmesh │ │ └── README.md │ └── fabprnt │ │ └── README.md ├── credcard │ ├── solids │ │ └── README.md │ └── vectors │ │ └── README.md ├── ledgour │ ├── solids │ │ └── README.md │ └── vectors │ │ └── README.md └── monezor │ ├── concepts │ └── lowprotwopiece.jpeg │ ├── solids │ ├── README.md │ ├── monezor_enclosure.blend │ ├── monezor_enclosure.gcode │ ├── monezor_enclosure.png │ ├── monezor_enclosure.stl │ ├── monezor_enclosure_buttons.png │ ├── monezor_enclosure_close.png │ ├── monezor_enclosure_gcode_settings.txt │ ├── monezor_enclosure_print_preview.png │ └── monezor_enclosure_support.png │ └── vectors │ └── README.md ├── firmware ├── README.md ├── confbadge │ └── defconfc │ │ ├── Makefile │ │ ├── README.md │ │ ├── out │ │ ├── firmblau.hex │ │ ├── firmboss.hex │ │ ├── firmlime.hex │ │ └── firmnorm.hex │ │ ├── platformio.ini │ │ └── src │ │ ├── main.cpp │ │ └── main.h ├── libopencm3.rules.mk ├── libopencm3.target.mk ├── monezor │ ├── COPYING │ ├── Makefile │ ├── inc │ │ ├── bitmaps.h │ │ ├── display.h │ │ ├── fonts.h │ │ ├── setup.h │ │ ├── timer.h │ │ ├── usb.h │ │ └── util.h │ ├── monezor.c │ ├── monezor.ld │ └── src │ │ ├── bitmaps.c │ │ ├── display.c │ │ ├── fonts.c │ │ ├── setup.c │ │ ├── timer.c │ │ ├── usb.c │ │ └── util.c └── trezour │ ├── classic │ ├── autobuild.sh │ ├── bitmaps.c │ ├── build-firmware.patch │ ├── logo48.png │ ├── logo48_empty.png │ ├── logo64.png │ └── logo64_empty.png │ └── modelt │ └── README.md ├── hardware ├── antennas │ └── README.md ├── breakneck │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── billofmat │ │ ├── breakneck-bill.csv │ │ └── breakneck-bill.fods │ ├── breakneck-black.kicad_wks │ ├── breakneck-white.kicad_wks │ ├── breakneck.kicad_pcb │ ├── breakneck.net │ ├── breakneck.pro │ ├── breakneck.sch │ ├── breakpanel.kicad_pcb │ ├── fabplace │ │ └── breakneckimport.csv │ ├── fp-lib-table │ ├── graphics │ │ ├── boardlaykicad.png │ │ ├── boardlayoutrend.png │ │ ├── boardrenderanim.gif │ │ ├── monerochromcopper.png │ │ ├── monerochrommask.png │ │ ├── monerochromtext.png │ │ ├── monerofullchrome.png │ │ ├── monerologosilk.png │ │ └── monerologosilk.xcf │ ├── libraries │ │ ├── monerohw.dcm │ │ └── monerohw.lib │ ├── modules │ │ ├── monerohw.pretty │ │ │ ├── 10120045-401LF.kicad_mod │ │ │ ├── Badgelife-Shitty-2x2.kicad_mod │ │ │ ├── C_0805.kicad_mod │ │ │ ├── Crystal_SMD_3215-2Pin_3.2x1.5mm.kicad_mod │ │ │ ├── DFN-8-1EP_2x3mm_Pitch0.5mm.kicad_mod │ │ │ ├── DFN-S-8-1EP_6x5mm_Pitch1.27mm.kicad_mod │ │ │ ├── D_SOD-123.kicad_mod │ │ │ ├── Eastrising_ER-CON24HT-1_01x24_P0.50mm.kicad_mod │ │ │ ├── Eastrising_ER-CON30HT-1_01x30_P0.50mm.kicad_mod │ │ │ ├── Fiducial_1mm_Dia_2.54mm_Outer_CopperTop.kicad_mod │ │ │ ├── GS2.kicad_mod │ │ │ ├── JST_PH_B2B-PH-K_02x2.00mm_Straight.kicad_mod │ │ │ ├── Keystone_3000_1x12mm-CoinCell.kicad_mod │ │ │ ├── LED_0805.kicad_mod │ │ │ ├── Linx_BAT-HLD-012-SMT.kicad_mod │ │ │ ├── MoneroCircleCombi.kicad_mod │ │ │ ├── MoneroLogoSilk.kicad_mod │ │ │ ├── MoneroTextSilk.kicad_mod │ │ │ ├── MountingHole_3mm.kicad_mod │ │ │ ├── MountingHole_3mm_Pad_Via.kicad_mod │ │ │ ├── Panel_Mousetab_25mm_Double.kicad_mod │ │ │ ├── Panel_Mousetab_25mm_Single.kicad_mod │ │ │ ├── PinSocket_2x05_P2.54mm_Vertical.kicad_mod │ │ │ ├── Pin_Header_Angled_1x02_Pitch2.54mm.kicad_mod │ │ │ ├── Pin_Header_Straight_1x14_Pitch2.54mm.kicad_mod │ │ │ ├── Pin_Header_Straight_1x20_Pitch2.54mm.kicad_mod │ │ │ ├── Pin_Header_Straight_2x04_Pitch2.54mm.kicad_mod │ │ │ ├── QFN-28-1EP_5x5mm_Pitch0.5mm.kicad_mod │ │ │ ├── R_0805.kicad_mod │ │ │ ├── SOT-143.kicad_mod │ │ │ ├── SOT-23.kicad_mod │ │ │ ├── SOT-353_SC-70-5.kicad_mod │ │ │ ├── SW_SPST_ESE11MV1.kicad_mod │ │ │ ├── SW_SPST_K21102SP.kicad_mod │ │ │ ├── Socket_Strip_Straight_1x07_Pitch2.54mm.kicad_mod │ │ │ ├── Solderjump-2NCRndpad.kicad_mod │ │ │ ├── Tag-Connect_TC2050-IDC-NL.kicad_mod │ │ │ ├── TestPoint_THTPad_1.0x1.0mm_Drill0.5mm.kicad_mod │ │ │ ├── TestPoint_THTPad_D1.5mm_Drill0.7mm.kicad_mod │ │ │ ├── USBC_Rcpt_Min_12401610E4-2A.kicad_mod │ │ │ ├── WFBGACEC1702.kicad_mod │ │ │ └── microSD_Card_Receptacle_Hirose_DM3AT-SF-PEJM5.kicad_mod │ │ └── packages3d │ │ │ ├── Battery_Holders.3dshapes │ │ │ ├── BatteryHolder_Linx_BAT-HLD-012-SMT.step │ │ │ ├── BatteryHolder_Linx_BAT-HLD-012-SMT.wrl │ │ │ ├── Keystone_3000_1x1220-CoinCell.step │ │ │ └── Keystone_3000_1x1220-CoinCell.wrl │ │ │ ├── Buttons_Switches_SMD.3dshapes │ │ │ ├── SW_SPST_PTS645.wings │ │ │ └── SW_SPST_PTS645.wrl │ │ │ ├── Capacitors_SMD.3dshapes │ │ │ ├── C_0805.step │ │ │ └── C_0805.wrl │ │ │ ├── Connectors_FFC-FPC.3dshapes │ │ │ ├── Hirose_FH12F-24S-0.5SH.stp │ │ │ ├── Hirose_FH12F-24S-0.5SH.wrl │ │ │ ├── Hirose_FH12F-30S-0.5SH.stp │ │ │ └── Hirose_FH12F-30S-0.5SH.wrl │ │ │ ├── Connectors_JST.3dshapes │ │ │ ├── JST_PH_B2B-PH-K_02x2.00mm_Straight.step │ │ │ ├── JST_PH_B2B-PH-K_02x2.00mm_Straight.wrl │ │ │ ├── JST_PH_S2B-PH-K_02x2.00mm_Angled.step │ │ │ └── JST_PH_S2B-PH-K_02x2.00mm_Angled.wrl │ │ │ ├── Connectors_SDHC.3dshapes │ │ │ ├── Hirose_DM3AT-SF-PEJM5.step │ │ │ ├── Hirose_DM3AT-SF-PEJM5.stp │ │ │ └── Hirose_DM3AT-SF-PEJM5.wrl │ │ │ ├── Connectors_USB.3dshapes │ │ │ ├── Amphenol_12401548E4.step │ │ │ └── Amphenol_12401548E4.wrl │ │ │ ├── Crystal.3dshapes │ │ │ └── Crystal_3215.wrl │ │ │ ├── Diodes_SMD.3dshapes │ │ │ ├── D_SOD-123.step │ │ │ └── D_SOD-123.wrl │ │ │ ├── Housings_DFN_QFN.3dshapes │ │ │ ├── DFN-6-1EP_2x2mm_Pitch0.65mm.wings │ │ │ ├── DFN-6-1EP_2x2mm_Pitch0.65mm.wrl │ │ │ ├── DFN-8-1EP_2x3mm_Pitch0.5mm.step │ │ │ ├── DFN-8-1EP_2x3mm_Pitch0.5mm.wrl │ │ │ ├── DFN-8_2x2mm_P0.5mm.step │ │ │ ├── DFN-8_2x2mm_P0.5mm.wrl │ │ │ ├── DFN-S-8-1EP_6x5mm_Pitch1.27mm.wings │ │ │ ├── DFN-S-8-1EP_6x5mm_Pitch1.27mm.wrl │ │ │ ├── QFN-28-1EP_5x5mm_Pitch0.5mm.wings │ │ │ └── QFN-28-1EP_5x5mm_Pitch0.5mm.wrl │ │ │ ├── Housings_QFP.3dshapes │ │ │ ├── LQFP-64_10x10mm_Pitch0.5mm.step │ │ │ └── LQFP-64_10x10mm_Pitch0.5mm.wrl │ │ │ ├── LEDs.3dshapes │ │ │ ├── LED_0805.wings │ │ │ ├── LED_0805.wrl │ │ │ └── LED_AM2520X9.step │ │ │ ├── Package_BGA.3dshapes │ │ │ ├── WFBGA-84_10x10_7.0x7.0mm_Pitch0.65mm.step │ │ │ └── WFBGA-84_10x10_7.0x7.0mm_Pitch0.65mm.wrl │ │ │ ├── Pin_Headers.3dshapes │ │ │ ├── PinSocket_2x05_P2.54mm_Vertical.step │ │ │ ├── PinSocket_2x05_P2.54mm_Vertical.wrl │ │ │ ├── Pin_Header_Angled_1x02_Pitch2.54mm.wings │ │ │ ├── Pin_Header_Angled_1x02_Pitch2.54mm.wrl │ │ │ ├── Pin_Header_Straight_2x04_Pitch2.54mm.wings │ │ │ ├── Pin_Header_Straight_2x04_Pitch2.54mm.wrl │ │ │ ├── TSW-114-07-G-S.wrl │ │ │ └── TSW-120-07-G-S.wrl │ │ │ ├── Resistors_SMD.3dshapes │ │ │ ├── R_0805.step │ │ │ └── R_0805.wrl │ │ │ ├── Socket_Strips.3dshapes │ │ │ ├── Socket_Strip_Straight_1x07_Pitch2.54mm.wings │ │ │ └── Socket_Strip_Straight_1x07_Pitch2.54mm.wrl │ │ │ └── TO_SOT_Packages_SMD.3dshapes │ │ │ ├── SC-70-5.wings │ │ │ ├── SC-70-5.wrl │ │ │ ├── SOT-143.wings │ │ │ ├── SOT-143.wrl │ │ │ ├── SOT-23.wings │ │ │ └── SOT-23.wrl │ ├── schematic │ │ └── breakneck-sch.pdf │ └── sym-lib-table ├── breaknext │ ├── Makefile │ ├── breaknext-black.kicad_wks │ ├── breaknext-white.kicad_wks │ ├── breaknext.kicad_pcb │ ├── breaknext.pro │ ├── fp-lib-table │ └── modules │ │ ├── monerohw.pretty │ │ ├── Socket_Strip_Straight_1x14_Pitch2.54mm.kicad_mod │ │ ├── Socket_Strip_Straight_1x20_Pitch2.54mm.kicad_mod │ │ └── microSD_Card_Receptacle_Hirose_DM3AT-SF-PEJM5.kicad_mod │ │ └── packages3d │ │ ├── Connectors_SDHC.3dshapes │ │ ├── Hirose_DM3AT-SF-PEJM5.step │ │ ├── Hirose_DM3AT-SF-PEJM5.stp │ │ └── Hirose_DM3AT-SF-PEJM5.wrl │ │ └── Socket_Strips.3dshapes │ │ ├── Socket_Strip_Straight_1x14_Pitch2.54mm.wings │ │ ├── Socket_Strip_Straight_1x14_Pitch2.54mm.wrl │ │ ├── Socket_Strip_Straight_1x20_Pitch2.54mm.wings │ │ └── Socket_Strip_Straight_1x20_Pitch2.54mm.wrl ├── clonebox │ └── README.md ├── clonedime │ └── README.md ├── clonekeep │ └── README.md ├── cloneledg │ ├── README.md │ └── ledgblue │ │ ├── fabraster │ │ └── ledgbluerendition.png │ │ ├── fabsingle │ │ ├── ledgblue-B.Cu.gbl │ │ ├── ledgblue-B.Mask.gbs │ │ ├── ledgblue-B.Paste.gbp │ │ ├── ledgblue-B.SilkS.gbo │ │ ├── ledgblue-Edge.Cuts.gm1 │ │ ├── ledgblue-F.Cu.gtl │ │ ├── ledgblue-F.Mask.gts │ │ ├── ledgblue-F.Paste.gtp │ │ ├── ledgblue-F.SilkS.gto │ │ ├── ledgblue-NPTH-drl_map.gbr │ │ ├── ledgblue-NPTH.drl │ │ ├── ledgblue-drl_map.gbr │ │ └── ledgblue.drl │ │ ├── footprints_gbrdxf │ │ ├── p1_hiroseFH23-39S-0.3SHW.dxf │ │ ├── p1_hiroseFH23-39S-0.3SHW.gbr │ │ ├── p2_wurth687-112-149-022.dxf │ │ ├── p2_wurth687-112-149-022.gbr │ │ ├── s1_wurth436353045816.dxf │ │ ├── s1_wurth436353045816.gbr │ │ ├── s2_multicompMCFTE-3C-V.dxf │ │ ├── s2_multicompMCFTE-3C-V.gbr │ │ ├── u2_ST31G480.dxf │ │ ├── u2_ST31G480.gbr │ │ ├── u4_STSPBTLE-RF.dxf │ │ ├── u4_STSPBTLE-RF.gbr │ │ ├── u8_amsAS3921.dxf │ │ └── u8_amsAS3921.gbr │ │ ├── fp-lib-table │ │ ├── ledgblue-cache.lib │ │ ├── ledgblue.kicad_pcb │ │ ├── ledgblue.net │ │ ├── ledgblue.pro │ │ ├── ledgblue.sch │ │ ├── ledgblue_footprints.pretty │ │ ├── ST31G480.kicad_mod │ │ ├── STSPBTLE-RF.kicad_mod │ │ ├── amsAS3921.kicad_mod │ │ ├── hiroseFH23-39S.kicad_mod │ │ ├── multicompMCFTE-3C-V.kicad_mod │ │ ├── wurth436353045816.kicad_mod │ │ └── wurth687-112-149-022.kicad_mod │ │ ├── ledgerblue.dcm │ │ ├── ledgerblue.lib │ │ ├── ledgour_bom.fods │ │ ├── ledgour_bom.pdf │ │ └── ledgour_bom.xlsx ├── clonetrez │ └── README.md ├── confbadge │ ├── defconfc │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── billofmat │ │ │ ├── defconfc-bill.csv │ │ │ └── defconfc-bill.fods │ │ ├── defconfc-black.kicad_wks │ │ ├── defconfc-white.kicad_wks │ │ ├── defconfc.kicad_pcb │ │ ├── defconfc.net │ │ ├── defconfc.pro │ │ ├── defconfc.sch │ │ ├── defconfc.xml │ │ ├── fp-lib-table │ │ ├── libraries │ │ │ ├── defconfc.dcm │ │ │ └── defconfc.lib │ │ ├── modules │ │ │ ├── monerohw.pretty │ │ │ │ ├── Fiducial_1mm_Dia_2mm_Outer.kicad_mod │ │ │ │ ├── Kastelospecsqrcbad.kicad_mod │ │ │ │ ├── Kastelospecsqrcode.kicad_mod │ │ │ │ ├── Keystone_3034_1x2032-Coincell.kicad_mod │ │ │ │ ├── LED_1206.kicad_mod │ │ │ │ ├── LanyardHole_12mm_Pad.kicad_mod │ │ │ │ ├── LanyardHole_16mm_Pad.kicad_mod │ │ │ │ ├── LanyardHole_18mm_Pad_Via.kicad_mod │ │ │ │ ├── Monerologokreis.kicad_mod │ │ │ │ ├── NFCAntennaloop.kicad_mod │ │ │ │ ├── NFCGraphicsrear.kicad_mod │ │ │ │ ├── Pin_Header_Straight_1x01_Pitch2.54mm.kicad_mod │ │ │ │ ├── Pin_Header_Straight_2x03_Pitch2.54mm.kicad_mod │ │ │ │ ├── R_0805.kicad_mod │ │ │ │ ├── SOIC-8_3.9x4.9mm_Pitch1.27mm.kicad_mod │ │ │ │ ├── SW_SPDT_CK-JS102011SAQN.kicad_mod │ │ │ │ ├── SW_SPST_PTS645.kicad_mod │ │ │ │ └── Tag-Connect_TC2030-IDC-NL.kicad_mod │ │ │ └── packages3d │ │ │ │ ├── Battery_Holders.3dshapes │ │ │ │ ├── Keystone_3034_1x2032-Coincell.step │ │ │ │ └── Keystone_3034_1x2032-Coincell.wrl │ │ │ │ ├── Buttons_Switches_SMD.3dshapes │ │ │ │ ├── CK_JS102011SAQN.stp │ │ │ │ ├── CK_JS102011SAQN.wrl │ │ │ │ ├── SW_SPST_PTS645.wings │ │ │ │ ├── SW_SPST_PTS645.wrl │ │ │ │ ├── SW_SPST_TL3342.step │ │ │ │ └── SW_SPST_TL3342.wrl │ │ │ │ ├── Housings_SOIC.3dshapes │ │ │ │ ├── SOIC-8_3.9x4.9mm_Pitch1.27mm.step │ │ │ │ ├── SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl │ │ │ │ ├── SOIJ-8_5.3x5.3mm_Pitch1.27mm.step │ │ │ │ └── SOIJ-8_5.3x5.3mm_Pitch1.27mm.wrl │ │ │ │ ├── LEDs.3dshapes │ │ │ │ ├── LED_1206.wings │ │ │ │ └── LED_1206.wrl │ │ │ │ ├── Pin_Headers.3dshapes │ │ │ │ ├── Pin_Header_Angled_2x03_Pitch2.54mm.step │ │ │ │ └── Pin_Header_Angled_2x03_Pitch2.54mm.wrl │ │ │ │ └── Resistors_SMD.3dshapes │ │ │ │ ├── R_0805.step │ │ │ │ └── R_0805.wrl │ │ └── supporting │ │ │ ├── FAQ.md │ │ │ └── README.md │ └── hcppnfc │ │ ├── .gitignore │ │ ├── fp-lib-table │ │ ├── hcppnfc.kicad_pcb │ │ ├── hcppnfc.net │ │ ├── hcppnfc.pro │ │ ├── hcppnfc.sch │ │ ├── libraries │ │ └── hcppnfc.lib │ │ ├── modules │ │ ├── monerohw.pretty │ │ │ ├── Fiducial_1mm_Dia_2mm_Outer.kicad_mod │ │ │ ├── GS2.kicad_mod │ │ │ ├── MountingHole_4.3mm_M4_ISO14580_Pad.kicad_mod │ │ │ ├── NFCAntennafull.kicad_mod │ │ │ ├── NFCAntennamid.kicad_mod │ │ │ ├── NFCAntennarect.kicad_mod │ │ │ ├── NFCAntennatall.kicad_mod │ │ │ ├── NFCAntennatiny.kicad_mod │ │ │ ├── Pin_Header_Straight_1x01_Pitch2.54mm.kicad_mod │ │ │ ├── SOIC-8_3.9x4.9mm_Pitch1.27mm.kicad_mod │ │ │ ├── SW_SPST_K21102SP.kicad_mod │ │ │ └── SW_SPST_PTS645.kicad_mod │ │ └── packages3d │ │ │ ├── Buttons_Switches_SMD.3dshapes │ │ │ ├── SW_SPST_PTS645.wings │ │ │ └── SW_SPST_PTS645.wrl │ │ │ ├── Housings_SOIC.3dshapes │ │ │ ├── SOIC-8_3.9x4.9mm_Pitch1.27mm.step │ │ │ └── SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl │ │ │ └── Pin_Headers.3dshapes │ │ │ ├── Pin_Header_Straight_1x01_Pitch2.54mm.wings │ │ │ └── Pin_Header_Straight_1x01_Pitch2.54mm.wrl │ │ ├── monero-black.kicad_wks │ │ ├── monero-white.kicad_wks │ │ └── pickplace │ │ └── hcppnfc.pos ├── fpgalogic │ └── README.md ├── monezor │ └── README.md ├── saddons │ └── 35c3re │ │ ├── .gitignore │ │ ├── 35C3XMR.kicad_pcb │ │ ├── 35C3XMR.net │ │ ├── 35C3XMR.pro │ │ ├── 35C3XMR.sch │ │ ├── billofmat │ │ └── 35C3XMR-bill.csv │ │ ├── fabplace │ │ ├── 35C3XMR-bot.csv │ │ └── 35C3XMR-top.csv │ │ ├── fabsingle │ │ └── 35C3XMR-tech.svg │ │ ├── fp-lib-table │ │ ├── libraries │ │ ├── monerohw.dcm │ │ └── monerohw.lib │ │ ├── modules │ │ ├── monerohw.pretty │ │ │ ├── 35C3Funny.kicad_mod │ │ │ ├── Badgelife-Shitty-2x2.kicad_mod │ │ │ ├── BatteryHolder_Keystone_3008_1x2450.kicad_mod │ │ │ ├── C_0805.kicad_mod │ │ │ ├── Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm.kicad_mod │ │ │ ├── Fiducial_1mm_Dia_2.54mm.kicad_mod │ │ │ ├── Kastelospecsqr.kicad_mod │ │ │ ├── LED_1206.kicad_mod │ │ │ ├── Moneroball_15mm.kicad_mod │ │ │ ├── MountingHole_2.5mm.kicad_mod │ │ │ ├── Panel_Mousetab_25mm_Single.kicad_mod │ │ │ ├── PinHeader_2x02_P2.54mm_Vertical_SMD.kicad_mod │ │ │ ├── R_0805.kicad_mod │ │ │ ├── SOIC-8_3.9x4.9mm_P1.27mm.kicad_mod │ │ │ ├── Solderarea.kicad_mod │ │ │ └── TestPoint_THTPad_D1.5mm_Drill0.7mm.kicad_mod │ │ └── packages3d │ │ │ ├── Battery_Holders.3dshapes │ │ │ ├── Keystone_3008_1x2450-CoinCell.step │ │ │ └── Keystone_3008_1x2450-CoinCell.wrl │ │ │ ├── Capacitors_SMD.3dshapes │ │ │ ├── C_0805.step │ │ │ └── C_0805.wrl │ │ │ ├── Connector_PinHeader_2.54mm.3dshapes │ │ │ ├── PinHeader_2x02_P2.54mm_Vertical_SMD.step │ │ │ └── PinHeader_2x02_P2.54mm_Vertical_SMD.wrl │ │ │ ├── LEDs.3dshapes │ │ │ ├── LED_1206_3216Metric.step │ │ │ └── LED_1206_3216Metric.wrl │ │ │ ├── Package_SO.3dshapes │ │ │ ├── SOIC-8_3.9x4.9mm_P1.27mm.step │ │ │ └── SOIC-8_3.9x4.9mm_P1.27mm.wrl │ │ │ ├── Package_SON.3dshapes │ │ │ ├── WSON-6_1.5x1.5mm_P0.5mm.step │ │ │ └── WSON-6_1.5x1.5mm_P0.5mm.wrl │ │ │ ├── Pin_Headers.3dshapes │ │ │ ├── PinHeader_2x02_P2.54mm_Vertical_SMD.step │ │ │ └── PinHeader_2x02_P2.54mm_Vertical_SMD.wrl │ │ │ └── Resistors_SMD.3dshapes │ │ │ ├── R_0805.step │ │ │ └── R_0805.wrl │ │ ├── monero-dark.kicad_wks │ │ ├── monero-light.kicad_wks │ │ └── sym-lib-table └── utilities │ ├── README.md │ ├── flextenna │ └── bluetooth │ │ ├── README.md │ │ ├── flextenna_bt_kapton5um.GKO │ │ └── flextenna_bt_kapton5um.GTL │ ├── usbcontst │ ├── .gitignore │ ├── fp-lib-table │ ├── libraries │ │ ├── usbconntest.dcm │ │ └── usbconntest.lib │ ├── modules │ │ ├── monerohw.pretty │ │ │ ├── Fiducial_1mm_Dia_2mm_Outer.kicad_mod │ │ │ ├── Keystone_3008_1x2450-CoinCell.kicad_mod │ │ │ ├── Pin_Header_Straight_1x24_Pitch2.54mm.kicad_mod │ │ │ ├── SW_SPST_K21102SP.kicad_mod │ │ │ └── USB_C_Plug_Molex_105444.kicad_mod │ │ └── packages3d │ │ │ ├── Battery_Holders.3dshapes │ │ │ ├── Keystone_3008_1x2450-CoinCell.step │ │ │ └── Keystone_3008_1x2450-CoinCell.wrl │ │ │ ├── Buttons_Switches_SMD.3dshapes │ │ │ ├── SW_SPST_PTS645.wings │ │ │ └── SW_SPST_PTS645.wrl │ │ │ ├── Connectors_USB.3dshapes │ │ │ ├── USB_C_Plug_Molex_105444.stp │ │ │ └── USB_C_Plug_Molex_105444.wrl │ │ │ └── Pin_Headers.3dshapes │ │ │ ├── Pin_Header_Straight_1x24_Pitch2.54mm.wings │ │ │ └── Pin_Header_Straight_1x24_Pitch2.54mm.wrl │ ├── monero-black.kicad_wks │ ├── monero-white.kicad_wks │ ├── usbconntest.kicad_pcb │ ├── usbconntest.net │ ├── usbconntest.pro │ └── usbconntest.sch │ └── ziftosma │ ├── README.md │ ├── ziftosma.GBL │ ├── ziftosma.GBS │ ├── ziftosma.GKO │ ├── ziftosma.GTL │ ├── ziftosma.GTO │ ├── ziftosma.GTS │ └── ziftosma.XLN └── software ├── README.md └── breakneck ├── README.md ├── console └── README.md ├── desktop └── README.md └── mobile └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/README.md -------------------------------------------------------------------------------- /documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/README.md -------------------------------------------------------------------------------- /documents/graphics/logo/Kastelo-Logo-Vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/graphics/logo/Kastelo-Logo-Vertical.jpg -------------------------------------------------------------------------------- /documents/graphics/logo/Kastelo-Logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/graphics/logo/Kastelo-Logo.ai -------------------------------------------------------------------------------- /documents/graphics/logo/Kastelo-Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/graphics/logo/Kastelo-Logo.jpg -------------------------------------------------------------------------------- /documents/graphics/logo/Kastelo-Logos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/graphics/logo/Kastelo-Logos.svg -------------------------------------------------------------------------------- /documents/graphics/logo/Kastelo-Symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/graphics/logo/Kastelo-Symbol.svg -------------------------------------------------------------------------------- /documents/graphics/logo/Kastelo-Text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/graphics/logo/Kastelo-Text.svg -------------------------------------------------------------------------------- /documents/graphics/logo/Kastelo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/graphics/logo/Kastelo.png -------------------------------------------------------------------------------- /documents/graphics/promo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/graphics/promo/README.md -------------------------------------------------------------------------------- /documents/legal/.gitignore: -------------------------------------------------------------------------------- 1 | # exclude file endings of assumed generated archives 2 | *.pdf 3 | -------------------------------------------------------------------------------- /documents/legal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/legal/README.md -------------------------------------------------------------------------------- /documents/legal/disclaimer-badgehcpp.fodt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/legal/disclaimer-badgehcpp.fodt -------------------------------------------------------------------------------- /documents/legal/disclaimer-badgehcpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/legal/disclaimer-badgehcpp.md -------------------------------------------------------------------------------- /documents/legal/disclaimer-badgenfc.fodt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/legal/disclaimer-badgenfc.fodt -------------------------------------------------------------------------------- /documents/legal/disclaimer-badgenfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/legal/disclaimer-badgenfc.md -------------------------------------------------------------------------------- /documents/legal/disclaimer-cefcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/legal/disclaimer-cefcc.md -------------------------------------------------------------------------------- /documents/legal/disclaimer-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/legal/disclaimer-wallet.md -------------------------------------------------------------------------------- /documents/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/Makefile -------------------------------------------------------------------------------- /documents/sphinx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/README.md -------------------------------------------------------------------------------- /documents/sphinx/source/application_environment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/application_environment.rst -------------------------------------------------------------------------------- /documents/sphinx/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/conf.py -------------------------------------------------------------------------------- /documents/sphinx/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/getting_started.rst -------------------------------------------------------------------------------- /documents/sphinx/source/hardware_architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/hardware_architecture.rst -------------------------------------------------------------------------------- /documents/sphinx/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/index.rst -------------------------------------------------------------------------------- /documents/sphinx/source/making_payments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/making_payments.rst -------------------------------------------------------------------------------- /documents/sphinx/source/receiving_payments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/receiving_payments.rst -------------------------------------------------------------------------------- /documents/sphinx/source/security_philosophy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/security_philosophy.rst -------------------------------------------------------------------------------- /documents/sphinx/source/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/documents/sphinx/source/troubleshooting.rst -------------------------------------------------------------------------------- /enclosure/breakneck/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/.gitignore -------------------------------------------------------------------------------- /enclosure/breakneck/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/COPYING.txt -------------------------------------------------------------------------------- /enclosure/breakneck/COPYING.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/COPYING.url -------------------------------------------------------------------------------- /enclosure/breakneck/bneckbuttons.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/bneckbuttons.fcstd -------------------------------------------------------------------------------- /enclosure/breakneck/bneckfdmpla.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/bneckfdmpla.fcstd -------------------------------------------------------------------------------- /enclosure/breakneck/bneckfdmpla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/bneckfdmpla.txt -------------------------------------------------------------------------------- /enclosure/breakneck/bnecklidtop.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/bnecklidtop.cdr -------------------------------------------------------------------------------- /enclosure/breakneck/bneckmoldpc.fcstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/bneckmoldpc.fcstd -------------------------------------------------------------------------------- /enclosure/breakneck/fabmesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/fabmesh/README.md -------------------------------------------------------------------------------- /enclosure/breakneck/fabprnt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/breakneck/fabprnt/README.md -------------------------------------------------------------------------------- /enclosure/credcard/solids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/credcard/solids/README.md -------------------------------------------------------------------------------- /enclosure/credcard/vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/credcard/vectors/README.md -------------------------------------------------------------------------------- /enclosure/ledgour/solids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/ledgour/solids/README.md -------------------------------------------------------------------------------- /enclosure/ledgour/vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/ledgour/vectors/README.md -------------------------------------------------------------------------------- /enclosure/monezor/concepts/lowprotwopiece.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/concepts/lowprotwopiece.jpeg -------------------------------------------------------------------------------- /enclosure/monezor/solids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/README.md -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure.blend -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure.gcode -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure.png -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure.stl -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure_buttons.png -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure_close.png -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure_gcode_settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure_gcode_settings.txt -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure_print_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure_print_preview.png -------------------------------------------------------------------------------- /enclosure/monezor/solids/monezor_enclosure_support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/solids/monezor_enclosure_support.png -------------------------------------------------------------------------------- /enclosure/monezor/vectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/enclosure/monezor/vectors/README.md -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/README.md -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/Makefile -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/README.md -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/out/firmblau.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/out/firmblau.hex -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/out/firmboss.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/out/firmboss.hex -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/out/firmlime.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/out/firmlime.hex -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/out/firmnorm.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/out/firmnorm.hex -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/platformio.ini -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/src/main.cpp -------------------------------------------------------------------------------- /firmware/confbadge/defconfc/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/confbadge/defconfc/src/main.h -------------------------------------------------------------------------------- /firmware/libopencm3.rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/libopencm3.rules.mk -------------------------------------------------------------------------------- /firmware/libopencm3.target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/libopencm3.target.mk -------------------------------------------------------------------------------- /firmware/monezor/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/COPYING -------------------------------------------------------------------------------- /firmware/monezor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/Makefile -------------------------------------------------------------------------------- /firmware/monezor/inc/bitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/inc/bitmaps.h -------------------------------------------------------------------------------- /firmware/monezor/inc/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/inc/display.h -------------------------------------------------------------------------------- /firmware/monezor/inc/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/inc/fonts.h -------------------------------------------------------------------------------- /firmware/monezor/inc/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/inc/setup.h -------------------------------------------------------------------------------- /firmware/monezor/inc/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/inc/timer.h -------------------------------------------------------------------------------- /firmware/monezor/inc/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/inc/usb.h -------------------------------------------------------------------------------- /firmware/monezor/inc/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/inc/util.h -------------------------------------------------------------------------------- /firmware/monezor/monezor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/monezor.c -------------------------------------------------------------------------------- /firmware/monezor/monezor.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/monezor.ld -------------------------------------------------------------------------------- /firmware/monezor/src/bitmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/src/bitmaps.c -------------------------------------------------------------------------------- /firmware/monezor/src/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/src/display.c -------------------------------------------------------------------------------- /firmware/monezor/src/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/src/fonts.c -------------------------------------------------------------------------------- /firmware/monezor/src/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/src/setup.c -------------------------------------------------------------------------------- /firmware/monezor/src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/src/timer.c -------------------------------------------------------------------------------- /firmware/monezor/src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/src/usb.c -------------------------------------------------------------------------------- /firmware/monezor/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/monezor/src/util.c -------------------------------------------------------------------------------- /firmware/trezour/classic/autobuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/trezour/classic/autobuild.sh -------------------------------------------------------------------------------- /firmware/trezour/classic/bitmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/trezour/classic/bitmaps.c -------------------------------------------------------------------------------- /firmware/trezour/classic/build-firmware.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/trezour/classic/build-firmware.patch -------------------------------------------------------------------------------- /firmware/trezour/classic/logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/trezour/classic/logo48.png -------------------------------------------------------------------------------- /firmware/trezour/classic/logo48_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/trezour/classic/logo48_empty.png -------------------------------------------------------------------------------- /firmware/trezour/classic/logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/trezour/classic/logo64.png -------------------------------------------------------------------------------- /firmware/trezour/classic/logo64_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/trezour/classic/logo64_empty.png -------------------------------------------------------------------------------- /firmware/trezour/modelt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/firmware/trezour/modelt/README.md -------------------------------------------------------------------------------- /hardware/antennas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/antennas/README.md -------------------------------------------------------------------------------- /hardware/breakneck/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/.gitignore -------------------------------------------------------------------------------- /hardware/breakneck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/Makefile -------------------------------------------------------------------------------- /hardware/breakneck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/README.md -------------------------------------------------------------------------------- /hardware/breakneck/billofmat/breakneck-bill.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/billofmat/breakneck-bill.csv -------------------------------------------------------------------------------- /hardware/breakneck/billofmat/breakneck-bill.fods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/billofmat/breakneck-bill.fods -------------------------------------------------------------------------------- /hardware/breakneck/breakneck-black.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/breakneck-black.kicad_wks -------------------------------------------------------------------------------- /hardware/breakneck/breakneck-white.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/breakneck-white.kicad_wks -------------------------------------------------------------------------------- /hardware/breakneck/breakneck.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/breakneck.kicad_pcb -------------------------------------------------------------------------------- /hardware/breakneck/breakneck.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/breakneck.net -------------------------------------------------------------------------------- /hardware/breakneck/breakneck.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/breakneck.pro -------------------------------------------------------------------------------- /hardware/breakneck/breakneck.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/breakneck.sch -------------------------------------------------------------------------------- /hardware/breakneck/breakpanel.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/breakpanel.kicad_pcb -------------------------------------------------------------------------------- /hardware/breakneck/fabplace/breakneckimport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/fabplace/breakneckimport.csv -------------------------------------------------------------------------------- /hardware/breakneck/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/fp-lib-table -------------------------------------------------------------------------------- /hardware/breakneck/graphics/boardlaykicad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/boardlaykicad.png -------------------------------------------------------------------------------- /hardware/breakneck/graphics/boardlayoutrend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/boardlayoutrend.png -------------------------------------------------------------------------------- /hardware/breakneck/graphics/boardrenderanim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/boardrenderanim.gif -------------------------------------------------------------------------------- /hardware/breakneck/graphics/monerochromcopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/monerochromcopper.png -------------------------------------------------------------------------------- /hardware/breakneck/graphics/monerochrommask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/monerochrommask.png -------------------------------------------------------------------------------- /hardware/breakneck/graphics/monerochromtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/monerochromtext.png -------------------------------------------------------------------------------- /hardware/breakneck/graphics/monerofullchrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/monerofullchrome.png -------------------------------------------------------------------------------- /hardware/breakneck/graphics/monerologosilk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/monerologosilk.png -------------------------------------------------------------------------------- /hardware/breakneck/graphics/monerologosilk.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/graphics/monerologosilk.xcf -------------------------------------------------------------------------------- /hardware/breakneck/libraries/monerohw.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/libraries/monerohw.dcm -------------------------------------------------------------------------------- /hardware/breakneck/libraries/monerohw.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/libraries/monerohw.lib -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/10120045-401LF.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/10120045-401LF.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Badgelife-Shitty-2x2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Badgelife-Shitty-2x2.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/C_0805.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/C_0805.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Crystal_SMD_3215-2Pin_3.2x1.5mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Crystal_SMD_3215-2Pin_3.2x1.5mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/DFN-8-1EP_2x3mm_Pitch0.5mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/DFN-8-1EP_2x3mm_Pitch0.5mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/DFN-S-8-1EP_6x5mm_Pitch1.27mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/DFN-S-8-1EP_6x5mm_Pitch1.27mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/D_SOD-123.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/D_SOD-123.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Eastrising_ER-CON24HT-1_01x24_P0.50mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Eastrising_ER-CON24HT-1_01x24_P0.50mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Eastrising_ER-CON30HT-1_01x30_P0.50mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Eastrising_ER-CON30HT-1_01x30_P0.50mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Fiducial_1mm_Dia_2.54mm_Outer_CopperTop.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Fiducial_1mm_Dia_2.54mm_Outer_CopperTop.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/GS2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/GS2.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/JST_PH_B2B-PH-K_02x2.00mm_Straight.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/JST_PH_B2B-PH-K_02x2.00mm_Straight.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Keystone_3000_1x12mm-CoinCell.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Keystone_3000_1x12mm-CoinCell.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/LED_0805.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/LED_0805.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Linx_BAT-HLD-012-SMT.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Linx_BAT-HLD-012-SMT.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/MoneroCircleCombi.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/MoneroCircleCombi.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/MoneroLogoSilk.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/MoneroLogoSilk.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/MoneroTextSilk.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/MoneroTextSilk.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/MountingHole_3mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/MountingHole_3mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/MountingHole_3mm_Pad_Via.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/MountingHole_3mm_Pad_Via.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Panel_Mousetab_25mm_Double.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Panel_Mousetab_25mm_Double.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Panel_Mousetab_25mm_Single.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Panel_Mousetab_25mm_Single.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/PinSocket_2x05_P2.54mm_Vertical.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/PinSocket_2x05_P2.54mm_Vertical.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Pin_Header_Angled_1x02_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Pin_Header_Angled_1x02_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Pin_Header_Straight_1x14_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Pin_Header_Straight_1x14_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Pin_Header_Straight_1x20_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Pin_Header_Straight_1x20_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Pin_Header_Straight_2x04_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Pin_Header_Straight_2x04_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/QFN-28-1EP_5x5mm_Pitch0.5mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/QFN-28-1EP_5x5mm_Pitch0.5mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/R_0805.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/R_0805.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/SOT-143.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/SOT-143.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/SOT-23.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/SOT-23.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/SOT-353_SC-70-5.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/SOT-353_SC-70-5.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/SW_SPST_ESE11MV1.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/SW_SPST_ESE11MV1.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/SW_SPST_K21102SP.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/SW_SPST_K21102SP.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Socket_Strip_Straight_1x07_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Socket_Strip_Straight_1x07_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Solderjump-2NCRndpad.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Solderjump-2NCRndpad.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/Tag-Connect_TC2050-IDC-NL.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/Tag-Connect_TC2050-IDC-NL.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/TestPoint_THTPad_1.0x1.0mm_Drill0.5mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/TestPoint_THTPad_1.0x1.0mm_Drill0.5mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/TestPoint_THTPad_D1.5mm_Drill0.7mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/TestPoint_THTPad_D1.5mm_Drill0.7mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/USBC_Rcpt_Min_12401610E4-2A.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/USBC_Rcpt_Min_12401610E4-2A.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/WFBGACEC1702.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/WFBGACEC1702.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/monerohw.pretty/microSD_Card_Receptacle_Hirose_DM3AT-SF-PEJM5.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/monerohw.pretty/microSD_Card_Receptacle_Hirose_DM3AT-SF-PEJM5.kicad_mod -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Battery_Holders.3dshapes/BatteryHolder_Linx_BAT-HLD-012-SMT.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Battery_Holders.3dshapes/BatteryHolder_Linx_BAT-HLD-012-SMT.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Battery_Holders.3dshapes/BatteryHolder_Linx_BAT-HLD-012-SMT.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Battery_Holders.3dshapes/BatteryHolder_Linx_BAT-HLD-012-SMT.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Battery_Holders.3dshapes/Keystone_3000_1x1220-CoinCell.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Battery_Holders.3dshapes/Keystone_3000_1x1220-CoinCell.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Battery_Holders.3dshapes/Keystone_3000_1x1220-CoinCell.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Battery_Holders.3dshapes/Keystone_3000_1x1220-CoinCell.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Capacitors_SMD.3dshapes/C_0805.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Capacitors_SMD.3dshapes/C_0805.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Capacitors_SMD.3dshapes/C_0805.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Capacitors_SMD.3dshapes/C_0805.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_FFC-FPC.3dshapes/Hirose_FH12F-24S-0.5SH.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_FFC-FPC.3dshapes/Hirose_FH12F-24S-0.5SH.stp -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_FFC-FPC.3dshapes/Hirose_FH12F-24S-0.5SH.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_FFC-FPC.3dshapes/Hirose_FH12F-24S-0.5SH.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_FFC-FPC.3dshapes/Hirose_FH12F-30S-0.5SH.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_FFC-FPC.3dshapes/Hirose_FH12F-30S-0.5SH.stp -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_FFC-FPC.3dshapes/Hirose_FH12F-30S-0.5SH.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_FFC-FPC.3dshapes/Hirose_FH12F-30S-0.5SH.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B2B-PH-K_02x2.00mm_Straight.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B2B-PH-K_02x2.00mm_Straight.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B2B-PH-K_02x2.00mm_Straight.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_JST.3dshapes/JST_PH_B2B-PH-K_02x2.00mm_Straight.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S2B-PH-K_02x2.00mm_Angled.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S2B-PH-K_02x2.00mm_Angled.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S2B-PH-K_02x2.00mm_Angled.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_JST.3dshapes/JST_PH_S2B-PH-K_02x2.00mm_Angled.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.stp -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_USB.3dshapes/Amphenol_12401548E4.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_USB.3dshapes/Amphenol_12401548E4.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Connectors_USB.3dshapes/Amphenol_12401548E4.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Connectors_USB.3dshapes/Amphenol_12401548E4.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Crystal.3dshapes/Crystal_3215.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Crystal.3dshapes/Crystal_3215.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-123.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-123.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-123.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Diodes_SMD.3dshapes/D_SOD-123.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.65mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.65mm.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.65mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-6-1EP_2x2mm_Pitch0.65mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x3mm_Pitch0.5mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x3mm_Pitch0.5mm.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x3mm_Pitch0.5mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8-1EP_2x3mm_Pitch0.5mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8_2x2mm_P0.5mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8_2x2mm_P0.5mm.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8_2x2mm_P0.5mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-8_2x2mm_P0.5mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-S-8-1EP_6x5mm_Pitch1.27mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-S-8-1EP_6x5mm_Pitch1.27mm.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-S-8-1EP_6x5mm_Pitch1.27mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/DFN-S-8-1EP_6x5mm_Pitch1.27mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_Pitch0.5mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_Pitch0.5mm.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_Pitch0.5mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_DFN_QFN.3dshapes/QFN-28-1EP_5x5mm_Pitch0.5mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_QFP.3dshapes/LQFP-64_10x10mm_Pitch0.5mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_QFP.3dshapes/LQFP-64_10x10mm_Pitch0.5mm.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Housings_QFP.3dshapes/LQFP-64_10x10mm_Pitch0.5mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Housings_QFP.3dshapes/LQFP-64_10x10mm_Pitch0.5mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/LEDs.3dshapes/LED_0805.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/LEDs.3dshapes/LED_0805.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/LEDs.3dshapes/LED_0805.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/LEDs.3dshapes/LED_0805.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/LEDs.3dshapes/LED_AM2520X9.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/LEDs.3dshapes/LED_AM2520X9.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Package_BGA.3dshapes/WFBGA-84_10x10_7.0x7.0mm_Pitch0.65mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Package_BGA.3dshapes/WFBGA-84_10x10_7.0x7.0mm_Pitch0.65mm.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Package_BGA.3dshapes/WFBGA-84_10x10_7.0x7.0mm_Pitch0.65mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Package_BGA.3dshapes/WFBGA-84_10x10_7.0x7.0mm_Pitch0.65mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/PinSocket_2x05_P2.54mm_Vertical.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/PinSocket_2x05_P2.54mm_Vertical.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/PinSocket_2x05_P2.54mm_Vertical.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/PinSocket_2x05_P2.54mm_Vertical.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Angled_1x02_Pitch2.54mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Angled_1x02_Pitch2.54mm.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Angled_1x02_Pitch2.54mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Angled_1x02_Pitch2.54mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_2x04_Pitch2.54mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_2x04_Pitch2.54mm.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_2x04_Pitch2.54mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_2x04_Pitch2.54mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/TSW-114-07-G-S.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/TSW-114-07-G-S.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/TSW-120-07-G-S.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Pin_Headers.3dshapes/TSW-120-07-G-S.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Resistors_SMD.3dshapes/R_0805.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Resistors_SMD.3dshapes/R_0805.step -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Resistors_SMD.3dshapes/R_0805.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Resistors_SMD.3dshapes/R_0805.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x07_Pitch2.54mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x07_Pitch2.54mm.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x07_Pitch2.54mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x07_Pitch2.54mm.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SC-70-5.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SC-70-5.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SC-70-5.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SC-70-5.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SOT-143.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SOT-143.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SOT-143.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SOT-143.wrl -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SOT-23.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SOT-23.wings -------------------------------------------------------------------------------- /hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SOT-23.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/modules/packages3d/TO_SOT_Packages_SMD.3dshapes/SOT-23.wrl -------------------------------------------------------------------------------- /hardware/breakneck/schematic/breakneck-sch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/schematic/breakneck-sch.pdf -------------------------------------------------------------------------------- /hardware/breakneck/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breakneck/sym-lib-table -------------------------------------------------------------------------------- /hardware/breaknext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/Makefile -------------------------------------------------------------------------------- /hardware/breaknext/breaknext-black.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/breaknext-black.kicad_wks -------------------------------------------------------------------------------- /hardware/breaknext/breaknext-white.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/breaknext-white.kicad_wks -------------------------------------------------------------------------------- /hardware/breaknext/breaknext.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/breaknext.kicad_pcb -------------------------------------------------------------------------------- /hardware/breaknext/breaknext.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/breaknext.pro -------------------------------------------------------------------------------- /hardware/breaknext/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/fp-lib-table -------------------------------------------------------------------------------- /hardware/breaknext/modules/monerohw.pretty/Socket_Strip_Straight_1x14_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/monerohw.pretty/Socket_Strip_Straight_1x14_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breaknext/modules/monerohw.pretty/Socket_Strip_Straight_1x20_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/monerohw.pretty/Socket_Strip_Straight_1x20_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/breaknext/modules/monerohw.pretty/microSD_Card_Receptacle_Hirose_DM3AT-SF-PEJM5.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/monerohw.pretty/microSD_Card_Receptacle_Hirose_DM3AT-SF-PEJM5.kicad_mod -------------------------------------------------------------------------------- /hardware/breaknext/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.step -------------------------------------------------------------------------------- /hardware/breaknext/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.stp -------------------------------------------------------------------------------- /hardware/breaknext/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/packages3d/Connectors_SDHC.3dshapes/Hirose_DM3AT-SF-PEJM5.wrl -------------------------------------------------------------------------------- /hardware/breaknext/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x14_Pitch2.54mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x14_Pitch2.54mm.wings -------------------------------------------------------------------------------- /hardware/breaknext/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x14_Pitch2.54mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x14_Pitch2.54mm.wrl -------------------------------------------------------------------------------- /hardware/breaknext/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x20_Pitch2.54mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x20_Pitch2.54mm.wings -------------------------------------------------------------------------------- /hardware/breaknext/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x20_Pitch2.54mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/breaknext/modules/packages3d/Socket_Strips.3dshapes/Socket_Strip_Straight_1x20_Pitch2.54mm.wrl -------------------------------------------------------------------------------- /hardware/clonebox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/clonebox/README.md -------------------------------------------------------------------------------- /hardware/clonedime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/clonedime/README.md -------------------------------------------------------------------------------- /hardware/clonekeep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/clonekeep/README.md -------------------------------------------------------------------------------- /hardware/cloneledg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/README.md -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabraster/ledgbluerendition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabraster/ledgbluerendition.png -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-B.Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-B.Cu.gbl -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-B.Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-B.Mask.gbs -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-B.Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-B.Paste.gbp -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-B.SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-B.SilkS.gbo -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-Edge.Cuts.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-Edge.Cuts.gm1 -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-F.Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-F.Cu.gtl -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-F.Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-F.Mask.gts -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-F.Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-F.Paste.gtp -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-F.SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-F.SilkS.gto -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-NPTH-drl_map.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-NPTH-drl_map.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-NPTH.drl -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue-drl_map.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue-drl_map.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fabsingle/ledgblue.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fabsingle/ledgblue.drl -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/p1_hiroseFH23-39S-0.3SHW.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/p1_hiroseFH23-39S-0.3SHW.dxf -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/p1_hiroseFH23-39S-0.3SHW.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/p1_hiroseFH23-39S-0.3SHW.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/p2_wurth687-112-149-022.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/p2_wurth687-112-149-022.dxf -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/p2_wurth687-112-149-022.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/p2_wurth687-112-149-022.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/s1_wurth436353045816.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/s1_wurth436353045816.dxf -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/s1_wurth436353045816.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/s1_wurth436353045816.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/s2_multicompMCFTE-3C-V.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/s2_multicompMCFTE-3C-V.dxf -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/s2_multicompMCFTE-3C-V.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/s2_multicompMCFTE-3C-V.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/u2_ST31G480.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/u2_ST31G480.dxf -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/u2_ST31G480.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/u2_ST31G480.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/u4_STSPBTLE-RF.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/u4_STSPBTLE-RF.dxf -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/u4_STSPBTLE-RF.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/u4_STSPBTLE-RF.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/u8_amsAS3921.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/u8_amsAS3921.dxf -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/footprints_gbrdxf/u8_amsAS3921.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/footprints_gbrdxf/u8_amsAS3921.gbr -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/fp-lib-table -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue-cache.lib -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue.kicad_pcb -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue.net -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue.pro -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue.sch -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/ST31G480.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/ST31G480.kicad_mod -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/STSPBTLE-RF.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/STSPBTLE-RF.kicad_mod -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/amsAS3921.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/amsAS3921.kicad_mod -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/hiroseFH23-39S.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/hiroseFH23-39S.kicad_mod -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/multicompMCFTE-3C-V.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/multicompMCFTE-3C-V.kicad_mod -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/wurth436353045816.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/wurth436353045816.kicad_mod -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/wurth687-112-149-022.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgblue_footprints.pretty/wurth687-112-149-022.kicad_mod -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgerblue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgerblue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgerblue.lib -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgour_bom.fods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgour_bom.fods -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgour_bom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgour_bom.pdf -------------------------------------------------------------------------------- /hardware/cloneledg/ledgblue/ledgour_bom.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/cloneledg/ledgblue/ledgour_bom.xlsx -------------------------------------------------------------------------------- /hardware/clonetrez/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/clonetrez/README.md -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/.gitignore -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/AUTHORS -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/billofmat/defconfc-bill.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/billofmat/defconfc-bill.csv -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/billofmat/defconfc-bill.fods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/billofmat/defconfc-bill.fods -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/defconfc-black.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/defconfc-black.kicad_wks -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/defconfc-white.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/defconfc-white.kicad_wks -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/defconfc.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/defconfc.kicad_pcb -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/defconfc.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/defconfc.net -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/defconfc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/defconfc.pro -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/defconfc.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/defconfc.sch -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/defconfc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/defconfc.xml -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/fp-lib-table -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/libraries/defconfc.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/libraries/defconfc.dcm -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/libraries/defconfc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/libraries/defconfc.lib -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/Fiducial_1mm_Dia_2mm_Outer.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/Fiducial_1mm_Dia_2mm_Outer.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/Kastelospecsqrcbad.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/Kastelospecsqrcbad.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/Kastelospecsqrcode.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/Kastelospecsqrcode.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/Keystone_3034_1x2032-Coincell.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/Keystone_3034_1x2032-Coincell.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/LED_1206.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/LED_1206.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/LanyardHole_12mm_Pad.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/LanyardHole_12mm_Pad.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/LanyardHole_16mm_Pad.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/LanyardHole_16mm_Pad.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/LanyardHole_18mm_Pad_Via.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/LanyardHole_18mm_Pad_Via.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/Monerologokreis.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/Monerologokreis.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/NFCAntennaloop.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/NFCAntennaloop.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/NFCGraphicsrear.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/NFCGraphicsrear.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/Pin_Header_Straight_1x01_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/Pin_Header_Straight_1x01_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/Pin_Header_Straight_2x03_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/Pin_Header_Straight_2x03_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/R_0805.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/R_0805.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/SOIC-8_3.9x4.9mm_Pitch1.27mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/SOIC-8_3.9x4.9mm_Pitch1.27mm.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/SW_SPDT_CK-JS102011SAQN.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/SW_SPDT_CK-JS102011SAQN.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/SW_SPST_PTS645.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/SW_SPST_PTS645.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/monerohw.pretty/Tag-Connect_TC2030-IDC-NL.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/monerohw.pretty/Tag-Connect_TC2030-IDC-NL.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Battery_Holders.3dshapes/Keystone_3034_1x2032-Coincell.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Battery_Holders.3dshapes/Keystone_3034_1x2032-Coincell.step -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Battery_Holders.3dshapes/Keystone_3034_1x2032-Coincell.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Battery_Holders.3dshapes/Keystone_3034_1x2032-Coincell.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/CK_JS102011SAQN.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/CK_JS102011SAQN.stp -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/CK_JS102011SAQN.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/CK_JS102011SAQN.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_TL3342.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_TL3342.step -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_TL3342.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_TL3342.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.step -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Housings_SOIC.3dshapes/SOIJ-8_5.3x5.3mm_Pitch1.27mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Housings_SOIC.3dshapes/SOIJ-8_5.3x5.3mm_Pitch1.27mm.step -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Housings_SOIC.3dshapes/SOIJ-8_5.3x5.3mm_Pitch1.27mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Housings_SOIC.3dshapes/SOIJ-8_5.3x5.3mm_Pitch1.27mm.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/LEDs.3dshapes/LED_1206.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/LEDs.3dshapes/LED_1206.wings -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/LEDs.3dshapes/LED_1206.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/LEDs.3dshapes/LED_1206.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Angled_2x03_Pitch2.54mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Angled_2x03_Pitch2.54mm.step -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Angled_2x03_Pitch2.54mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Angled_2x03_Pitch2.54mm.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Resistors_SMD.3dshapes/R_0805.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Resistors_SMD.3dshapes/R_0805.step -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/modules/packages3d/Resistors_SMD.3dshapes/R_0805.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/modules/packages3d/Resistors_SMD.3dshapes/R_0805.wrl -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/supporting/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/supporting/FAQ.md -------------------------------------------------------------------------------- /hardware/confbadge/defconfc/supporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/defconfc/supporting/README.md -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/.gitignore -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/fp-lib-table -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/hcppnfc.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/hcppnfc.kicad_pcb -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/hcppnfc.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/hcppnfc.net -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/hcppnfc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/hcppnfc.pro -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/hcppnfc.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/hcppnfc.sch -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/libraries/hcppnfc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/libraries/hcppnfc.lib -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/Fiducial_1mm_Dia_2mm_Outer.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/Fiducial_1mm_Dia_2mm_Outer.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/GS2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/GS2.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/MountingHole_4.3mm_M4_ISO14580_Pad.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/MountingHole_4.3mm_M4_ISO14580_Pad.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennafull.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennafull.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennamid.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennamid.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennarect.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennarect.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennatall.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennatall.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennatiny.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/NFCAntennatiny.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/Pin_Header_Straight_1x01_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/Pin_Header_Straight_1x01_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/SOIC-8_3.9x4.9mm_Pitch1.27mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/SOIC-8_3.9x4.9mm_Pitch1.27mm.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/SW_SPST_K21102SP.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/SW_SPST_K21102SP.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/monerohw.pretty/SW_SPST_PTS645.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/monerohw.pretty/SW_SPST_PTS645.kicad_mod -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.step -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/packages3d/Housings_SOIC.3dshapes/SOIC-8_3.9x4.9mm_Pitch1.27mm.wrl -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wings -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_1x01_Pitch2.54mm.wrl -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/monero-black.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/monero-black.kicad_wks -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/monero-white.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/monero-white.kicad_wks -------------------------------------------------------------------------------- /hardware/confbadge/hcppnfc/pickplace/hcppnfc.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/confbadge/hcppnfc/pickplace/hcppnfc.pos -------------------------------------------------------------------------------- /hardware/fpgalogic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/fpgalogic/README.md -------------------------------------------------------------------------------- /hardware/monezor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/monezor/README.md -------------------------------------------------------------------------------- /hardware/saddons/35c3re/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/.gitignore -------------------------------------------------------------------------------- /hardware/saddons/35c3re/35C3XMR.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/35C3XMR.kicad_pcb -------------------------------------------------------------------------------- /hardware/saddons/35c3re/35C3XMR.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/35C3XMR.net -------------------------------------------------------------------------------- /hardware/saddons/35c3re/35C3XMR.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/35C3XMR.pro -------------------------------------------------------------------------------- /hardware/saddons/35c3re/35C3XMR.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/35C3XMR.sch -------------------------------------------------------------------------------- /hardware/saddons/35c3re/billofmat/35C3XMR-bill.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/billofmat/35C3XMR-bill.csv -------------------------------------------------------------------------------- /hardware/saddons/35c3re/fabplace/35C3XMR-bot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/fabplace/35C3XMR-bot.csv -------------------------------------------------------------------------------- /hardware/saddons/35c3re/fabplace/35C3XMR-top.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/fabplace/35C3XMR-top.csv -------------------------------------------------------------------------------- /hardware/saddons/35c3re/fabsingle/35C3XMR-tech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/fabsingle/35C3XMR-tech.svg -------------------------------------------------------------------------------- /hardware/saddons/35c3re/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/fp-lib-table -------------------------------------------------------------------------------- /hardware/saddons/35c3re/libraries/monerohw.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/libraries/monerohw.dcm -------------------------------------------------------------------------------- /hardware/saddons/35c3re/libraries/monerohw.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/libraries/monerohw.lib -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/35C3Funny.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/35C3Funny.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/Badgelife-Shitty-2x2.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/Badgelife-Shitty-2x2.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/BatteryHolder_Keystone_3008_1x2450.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/BatteryHolder_Keystone_3008_1x2450.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/C_0805.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/C_0805.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/Fiducial_1mm_Dia_2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/Fiducial_1mm_Dia_2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/Kastelospecsqr.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/Kastelospecsqr.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/LED_1206.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/LED_1206.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/Moneroball_15mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/Moneroball_15mm.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/MountingHole_2.5mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/MountingHole_2.5mm.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/Panel_Mousetab_25mm_Single.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/Panel_Mousetab_25mm_Single.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/PinHeader_2x02_P2.54mm_Vertical_SMD.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/PinHeader_2x02_P2.54mm_Vertical_SMD.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/R_0805.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/R_0805.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/SOIC-8_3.9x4.9mm_P1.27mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/SOIC-8_3.9x4.9mm_P1.27mm.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/Solderarea.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/Solderarea.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/monerohw.pretty/TestPoint_THTPad_D1.5mm_Drill0.7mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/monerohw.pretty/TestPoint_THTPad_D1.5mm_Drill0.7mm.kicad_mod -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Battery_Holders.3dshapes/Keystone_3008_1x2450-CoinCell.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Battery_Holders.3dshapes/Keystone_3008_1x2450-CoinCell.step -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Battery_Holders.3dshapes/Keystone_3008_1x2450-CoinCell.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Battery_Holders.3dshapes/Keystone_3008_1x2450-CoinCell.wrl -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Capacitors_SMD.3dshapes/C_0805.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Capacitors_SMD.3dshapes/C_0805.step -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Capacitors_SMD.3dshapes/C_0805.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Capacitors_SMD.3dshapes/C_0805.wrl -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.step -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.wrl -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/LEDs.3dshapes/LED_1206_3216Metric.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/LEDs.3dshapes/LED_1206_3216Metric.step -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/LEDs.3dshapes/LED_1206_3216Metric.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/LEDs.3dshapes/LED_1206_3216Metric.wrl -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.step -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Package_SON.3dshapes/WSON-6_1.5x1.5mm_P0.5mm.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Package_SON.3dshapes/WSON-6_1.5x1.5mm_P0.5mm.step -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Package_SON.3dshapes/WSON-6_1.5x1.5mm_P0.5mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Package_SON.3dshapes/WSON-6_1.5x1.5mm_P0.5mm.wrl -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Pin_Headers.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Pin_Headers.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.step -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Pin_Headers.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Pin_Headers.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.wrl -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Resistors_SMD.3dshapes/R_0805.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Resistors_SMD.3dshapes/R_0805.step -------------------------------------------------------------------------------- /hardware/saddons/35c3re/modules/packages3d/Resistors_SMD.3dshapes/R_0805.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/modules/packages3d/Resistors_SMD.3dshapes/R_0805.wrl -------------------------------------------------------------------------------- /hardware/saddons/35c3re/monero-dark.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/monero-dark.kicad_wks -------------------------------------------------------------------------------- /hardware/saddons/35c3re/monero-light.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/monero-light.kicad_wks -------------------------------------------------------------------------------- /hardware/saddons/35c3re/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/saddons/35c3re/sym-lib-table -------------------------------------------------------------------------------- /hardware/utilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/README.md -------------------------------------------------------------------------------- /hardware/utilities/flextenna/bluetooth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/flextenna/bluetooth/README.md -------------------------------------------------------------------------------- /hardware/utilities/flextenna/bluetooth/flextenna_bt_kapton5um.GKO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/flextenna/bluetooth/flextenna_bt_kapton5um.GKO -------------------------------------------------------------------------------- /hardware/utilities/flextenna/bluetooth/flextenna_bt_kapton5um.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/flextenna/bluetooth/flextenna_bt_kapton5um.GTL -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/.gitignore -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/fp-lib-table -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/libraries/usbconntest.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/libraries/usbconntest.dcm -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/libraries/usbconntest.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/libraries/usbconntest.lib -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/monerohw.pretty/Fiducial_1mm_Dia_2mm_Outer.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/monerohw.pretty/Fiducial_1mm_Dia_2mm_Outer.kicad_mod -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/monerohw.pretty/Keystone_3008_1x2450-CoinCell.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/monerohw.pretty/Keystone_3008_1x2450-CoinCell.kicad_mod -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/monerohw.pretty/Pin_Header_Straight_1x24_Pitch2.54mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/monerohw.pretty/Pin_Header_Straight_1x24_Pitch2.54mm.kicad_mod -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/monerohw.pretty/SW_SPST_K21102SP.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/monerohw.pretty/SW_SPST_K21102SP.kicad_mod -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/monerohw.pretty/USB_C_Plug_Molex_105444.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/monerohw.pretty/USB_C_Plug_Molex_105444.kicad_mod -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/packages3d/Battery_Holders.3dshapes/Keystone_3008_1x2450-CoinCell.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/packages3d/Battery_Holders.3dshapes/Keystone_3008_1x2450-CoinCell.step -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/packages3d/Battery_Holders.3dshapes/Keystone_3008_1x2450-CoinCell.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/packages3d/Battery_Holders.3dshapes/Keystone_3008_1x2450-CoinCell.wrl -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wings -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/packages3d/Buttons_Switches_SMD.3dshapes/SW_SPST_PTS645.wrl -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/packages3d/Connectors_USB.3dshapes/USB_C_Plug_Molex_105444.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/packages3d/Connectors_USB.3dshapes/USB_C_Plug_Molex_105444.stp -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/packages3d/Connectors_USB.3dshapes/USB_C_Plug_Molex_105444.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/packages3d/Connectors_USB.3dshapes/USB_C_Plug_Molex_105444.wrl -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_1x24_Pitch2.54mm.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_1x24_Pitch2.54mm.wings -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_1x24_Pitch2.54mm.wrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/modules/packages3d/Pin_Headers.3dshapes/Pin_Header_Straight_1x24_Pitch2.54mm.wrl -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/monero-black.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/monero-black.kicad_wks -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/monero-white.kicad_wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/monero-white.kicad_wks -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/usbconntest.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/usbconntest.kicad_pcb -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/usbconntest.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/usbconntest.net -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/usbconntest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/usbconntest.pro -------------------------------------------------------------------------------- /hardware/utilities/usbcontst/usbconntest.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/usbcontst/usbconntest.sch -------------------------------------------------------------------------------- /hardware/utilities/ziftosma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/ziftosma/README.md -------------------------------------------------------------------------------- /hardware/utilities/ziftosma/ziftosma.GBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/ziftosma/ziftosma.GBL -------------------------------------------------------------------------------- /hardware/utilities/ziftosma/ziftosma.GBS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/ziftosma/ziftosma.GBS -------------------------------------------------------------------------------- /hardware/utilities/ziftosma/ziftosma.GKO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/ziftosma/ziftosma.GKO -------------------------------------------------------------------------------- /hardware/utilities/ziftosma/ziftosma.GTL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/ziftosma/ziftosma.GTL -------------------------------------------------------------------------------- /hardware/utilities/ziftosma/ziftosma.GTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/ziftosma/ziftosma.GTO -------------------------------------------------------------------------------- /hardware/utilities/ziftosma/ziftosma.GTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/ziftosma/ziftosma.GTS -------------------------------------------------------------------------------- /hardware/utilities/ziftosma/ziftosma.XLN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/hardware/utilities/ziftosma/ziftosma.XLN -------------------------------------------------------------------------------- /software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/software/README.md -------------------------------------------------------------------------------- /software/breakneck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monero-project/kastelo/HEAD/software/breakneck/README.md -------------------------------------------------------------------------------- /software/breakneck/console/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/breakneck/desktop/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/breakneck/mobile/README.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------