diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..9e05ca3 Binary files /dev/null and b/.DS_Store differ diff --git a/Poundering.typ b/Poundering.typ index e69de29..c2c282f 100644 --- a/Poundering.typ +++ b/Poundering.typ @@ -0,0 +1,179 @@ += RP2350 Flight Controller + +Ok so the basic thing is that : + +I am a FPV pilot and I have built a few FPV drones. I am also a embeded engeneer and I want to try to build my own FC. + +I want that FC to be quite unique in at least a few ways and I have no experience in using STM32 MCU's that are often used in the industry for that kind of application. + +I am more experienced and like a lot the MCU's from Raspbberry the Rp2040 and 2350. + +Lucky me, Betaflight just added early support for those microcontrollers and except from my fellow Swiss guy behind madflight i dont hink I can find any one to buy. And even then, the madflight is not really about having a serious alternative to the regular FC's on the market and more about prototyping and learning. + +So basically I want to build a fully featured flight controller in the same class as ones you can find online and that can drive a normal 4in1 ESC (Maybe later a full stack design will be possible) + +=== MCU + +I am going to be using the SC1512-A4 as its a rp2350 type B with onboard flash. It will be very nice because there is a lot of IO, its easy to route and I will not have to wire an external flash which is nice on cost and on routing. + +While it does not need any external flash it still needs a few components. + +I should be using the ABM8-272-T3 as recommended by the Raspbberry guide but its not in stock so I will be using the MP12641 which should work and is even cheaper. + +I will use those TL3315NF160Q buttons for RST and BOOTSEL. They are very low profile so I hope they are still usable. + + +=== IMU + +The IMU is hard to source as the well known names for these are almost everytwhere out of stock which is a pain. + +I will stick with the old BMI270 even tho its considered obsolete because its the only option I could find in stock and even then it was only in stock on Digikey. However its a very well proven sensor and is actually used int he SpeedyBee FC im uisng as a benchmark. + +=== Barometer + +I am going to use the BMP581 as its the only option I can see availble on DigKey or Mouser which are my two go-to parts stores. + +=== Magnetometer + +This board won't be having any onboard as its only really a use for Inav and then you can just buy a nice M10 GPS that has one + it would be way better there as there is no high power switching nearby. + +=== OSD + +As im making a digital only support I dont need an OSD chip + +=== ESC connectivity + +I will be using the pinout that speedybee uses + pads so it can also work for other esc's. + +The pinout will be + +- GND +- BAT +- M1 +- M2 +- M3 +- M4 +- CURRENT +- TELEMETRY + +I will be using the SM08B-SRSS-TB connector + +=== DJI connector + +I will be desinging this board in a way that makes it compatible with DJI digital system. + +The pinout for DJI is as such : + +- 10V +- GND +- UART TX +- UART RX +- GND +- SBUS/RX + +I should be using the SM06B-SRSS-TB but as its not in stock I will take the CI1106M1HR0-NH + +=== GPS connector + +The pinout for the GPS connector is as such : + +- 5V +- GND +- TX +- RX +- SDA +- SCL +- PPS + +WARNING !! I will have to add I2C pull ups to 3.3V as the usual M10 modules use 5V but 3.3V logic. + +=== SWD connector + +I will be using the SM03B-SRSS-TB connector but i wont be mounting it on every board as I actually never had to use the debug probe on any of my Rp2040 builds as USB always works nicely. + +- SWCLK +- GND +- SWDIO + +I wont add more pads to help with other debug probe as this one already feels pretty overkill. + +=== Power + +- TVS diode across VBAT and GND +- 5V rail +- 10V rail +- 3.3V rail +- USB autoswitching power + +At least 2A on 10 and 5V rails and accept from 4S to 6S voltage (12-25V range) + +5V regulator : LMR51635YFDDCR +10V regulator : LMR51635YFDDCR +3.3V regulator : TLV75533PDBVR + +I will be using the 5V to feed the 3.3V LDO it should be well sufficient enough. + +=== USB + +I will be using the USB4105-GF-A-120 as it seems to be pretty good and cheap. + +=== SD Card + +I will be using the "MSD-1-A" as its very cheap. I could have used a Moley option that is lighter and more low profile but I prefered to stay on the cheap side for the first version. + +It will need to be wired for SPI and it would be nice to have a card detect pin routed + +=== Auto power switching + +As we wont be using analog VTX we should be capable of powering the 5V also with the USB. But for that we need a source switcher. + +I will use this : LM66200DRLR + +It is pretty cheap and small and will do its job just fine. What is nice is that with our power rail architecture, 5V also powers 3.3V for the MCU + +=== Safety + +I will be using this TVS diode : SMBJ28A it should be enough to protect my circuit as there should also be one on my ESC. + +For the USB D+ D- i will be using the TPD2EUSB30DRTR diode that protects both channels and is small (but 0.8CHF so pretty expensive) + +For VBUS I will use the TPD1E10B06DPYR. + +=== IO needs + +This part is still a WIP + +Motor outputs : 4 (lets stay simple for now) but with a connector AND pads + +UART's : On a digital build at least 3 + +- VTX +- Receiver +- GPS + +Only 2 hardware Uarts exists on the Rp2350 but you can have software ones through PIO so I will be putting 4 UARTS on the PCB + +I2C : 2 buses one internal one external + +SBUS : One RX pin for the DJI RC controller just in case + +LED : 5V GND PIO_PIN at least 2 + +Buzzer : I am using the 2N7002 mosfet on lowside so user can use BZ+ BZ- + +PWM: At least 4 PWM output will be broken out + +ADC: 4 pads + +Power : There will be pads for 3.3 5 and 10V and especially 5V and GND pads near every output so its easy to wire things up + + + + + + + + + + + diff --git a/RP_FC/.DS_Store b/RP_FC/.DS_Store new file mode 100644 index 0000000..dbad444 Binary files /dev/null and b/RP_FC/.DS_Store differ diff --git a/RP_FC/PCBV1.kicad_pro b/RP_FC/PCBV1.kicad_pro new file mode 100644 index 0000000..d998838 --- /dev/null +++ b/RP_FC/PCBV1.kicad_pro @@ -0,0 +1,619 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.05, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.05, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": true, + "text_position": 0, + "units_format": 0 + }, + "fab_line_width": 0.1, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.1, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.8, + "height": 1.27, + "width": 2.54 + }, + "silk_line_width": 0.1, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.1, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.5 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "creepage": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_filters_mismatch": "ignore", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_to_hole": "warning", + "holes_co_located": "warning", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "mirrored_text_on_front_layer": "warning", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "nonmirrored_text_on_back_layer": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_on_edge_cuts": "error", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_angle": "error", + "track_dangling": "warning", + "track_segment_length": "error", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.0, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.5, + "min_groove_width": 0.0, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.0, + "min_via_annular_width": 0.1, + "min_via_diameter": 0.5, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpthpad": true, + "td_onroundshapesonly": false, + "td_onsmdpad": true, + "td_ontrackend": false, + "td_onvia": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_pairs": [], + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "footprint_filter": "ignore", + "footprint_link_issues": "warning", + "four_way_junction": "ignore", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "label_multiple_wires": "warning", + "lib_symbol_issues": "warning", + "lib_symbol_mismatch": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "same_local_global_label": "warning", + "similar_label_and_power": "warning", + "similar_labels": "warning", + "similar_power": "warning", + "simulation_model_issue": "ignore", + "single_global_label": "ignore", + "unannotated": "error", + "unconnected_wire_endpoint": "warning", + "undefined_netclass": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "PCBV1.kicad_pro", + "version": 3 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "priority": 2147483647, + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.2, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + } + ], + "meta": { + "version": 4 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "plot": "", + "pos_files": "", + "specctra_dsn": "", + "step": "", + "svg": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "${PROJECTNAME}.csv", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + }, + { + "group_by": true, + "label": "Exclude from BOM", + "name": "${EXCLUDE_FROM_BOM}", + "show": true + }, + { + "group_by": true, + "label": "Exclude from Board", + "name": "${EXCLUDE_FROM_BOARD}", + "show": true + }, + { + "group_by": true, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "include_excluded_from_bom": true, + "name": "Default Editing", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "space_save_all_events": true, + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "c1d52523-a791-4d76-a92c-cefcd85111a4", + "Root" + ] + ], + "text_variables": {} +} diff --git a/RP_FC/RP_FC.kicad_pcb b/RP_FC/RP_FC.kicad_pcb index c547853..d61dc84 100644 --- a/RP_FC/RP_FC.kicad_pcb +++ b/RP_FC/RP_FC.kicad_pcb @@ -1,2 +1,82 @@ -(kicad_pcb (version 20241229) (generator "pcbnew") (generator_version "9.0") -) \ No newline at end of file +(kicad_pcb + (version 20241229) + (generator "pcbnew") + (generator_version "9.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (layers + (0 "F.Cu" signal) + (2 "B.Cu" signal) + (9 "F.Adhes" user "F.Adhesive") + (11 "B.Adhes" user "B.Adhesive") + (13 "F.Paste" user) + (15 "B.Paste" user) + (5 "F.SilkS" user "F.Silkscreen") + (7 "B.SilkS" user "B.Silkscreen") + (1 "F.Mask" user) + (3 "B.Mask" user) + (17 "Dwgs.User" user "User.Drawings") + (19 "Cmts.User" user "User.Comments") + (21 "Eco1.User" user "User.Eco1") + (23 "Eco2.User" user "User.Eco2") + (25 "Edge.Cuts" user) + (27 "Margin" user) + (31 "F.CrtYd" user "F.Courtyard") + (29 "B.CrtYd" user "B.Courtyard") + (35 "F.Fab" user) + (33 "B.Fab" user) + (39 "User.1" user) + (41 "User.2" user) + (43 "User.3" user) + (45 "User.4" user) + ) + (setup + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (tenting front back) + (pcbplotparams + (layerselection 0x00000000_00000000_55555555_5755f5ff) + (plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (pdf_metadata yes) + (pdf_single_document no) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plot_black_and_white yes) + (sketchpadsonfab no) + (plotpadnumbers no) + (hidednponfab no) + (sketchdnponfab yes) + (crossoutdnponfab yes) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (embedded_fonts no) +) diff --git a/RP_FC/RP_FC.kicad_prl b/RP_FC/RP_FC.kicad_prl index fe4b7a9..8949086 100644 --- a/RP_FC/RP_FC.kicad_prl +++ b/RP_FC/RP_FC.kicad_prl @@ -2,18 +2,18 @@ "board": { "active_layer": 0, "active_layer_preset": "", - "auto_track_width": true, + "auto_track_width": false, "hidden_netclasses": [], "hidden_nets": [], "high_contrast_mode": 0, "net_color_mode": 1, "opacity": { - "images": 0.6, + "images": 1.0, "pads": 1.0, "shapes": 1.0, "tracks": 1.0, "vias": 1.0, - "zones": 0.6 + "zones": 1.0 }, "selection_filter": { "dimensions": true, diff --git a/RP_FC/RP_FC.kicad_sch b/RP_FC/RP_FC.kicad_sch index cbcea55..3e27f12 100644 --- a/RP_FC/RP_FC.kicad_sch +++ b/RP_FC/RP_FC.kicad_sch @@ -5,6 +5,836 @@ (uuid "c1d52523-a791-4d76-a92c-cefcd85111a4") (paper "A3") (lib_symbols + (symbol "Device:Crystal_GND24" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Y" + (at 3.175 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Crystal_GND24" + (at 3.175 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Four pin crystal, GND on pins 2 and 4" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property private "KLC_S3.3" "The rectangle is not a symbol body but a graphical element" + (at 0 -12.7 0) + (show_name) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property private "KLC_S4.1" "Some pins are on 50mil grid to make the symbol small" + (at 0 -15.24 0) + (show_name) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "quartz ceramic resonator oscillator" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Crystal*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Crystal_GND24_0_1" + (polyline + (pts + (xy -2.54 2.286) (xy -2.54 3.556) (xy 2.54 3.556) (xy 2.54 2.286) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 0) (xy -2.032 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -2.286) (xy -2.54 -3.556) (xy 2.54 -3.556) (xy 2.54 -2.286) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 -1.27) (xy -2.032 1.27) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.143 2.54) + (end 1.143 -2.54) + (stroke + (width 0.3048) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -3.81) (xy 0 -3.556) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.032 0) (xy 2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.032 -1.27) (xy 2.032 1.27) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Crystal_GND24_1_1" + (pin passive line + (at -3.81 0 0) + (length 1.27) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -5.08 90) + (length 1.27) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -5.08 90) + (length 1.27) + (hide yes) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 1.27) + (name "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Samacsys:2N7002" + (pin_names + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 11.43 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Value" "2N7002" + (at 11.43 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Footprint" "Samacsys:SOT96P240X120-3N" + (at 11.43 -98.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" + (at 11.43 -198.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "Voltage controlled small signal switch.; High density cell design for extremely low RDS(ON).; Rugged and Reliable.; High saturation current capability." + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "1.2" + (at 11.43 -398.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Part Number" "512-2N7002" + (at 11.43 -498.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/onsemi-Fairchild/2N7002?qs=0dwsXDNhqlz66WJJhrTFjQ%3D%3D" + (at 11.43 -598.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Name" "onsemi" + (at 11.43 -698.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "2N7002" + (at 11.43 -798.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (symbol "2N7002_1_1" + (polyline + (pts + (xy 2.54 0) (xy 5.08 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 5.08) (xy 5.08 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.842 5.588) (xy 5.842 4.572) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.842 2.54) (xy 6.858 3.048) (xy 6.858 2.032) (xy 5.842 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 5.842 2.032) (xy 5.842 3.048) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.842 0) (xy 7.62 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.842 -0.508) (xy 5.842 0.508) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 6.35 2.54) + (radius 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 5.08) (xy 5.842 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 5.08) (xy 7.62 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 2.54) (xy 5.842 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 2.54) (xy 7.62 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at 0 0 0) + (length 2.54) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 10.16 270) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -5.08 90) + (length 2.54) + (name "S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Samacsys:LM66200DRLR" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "IC" + (at 29.21 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Value" "LM66200DRLR" + (at 29.21 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Footprint" "Samacsys:SOTFL50P160X60-8N" + (at 29.21 -94.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "https://www.ti.com/lit/gpn/lm66200" + (at 29.21 -194.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "1.6-V to 5.5-V, 40-m, 2.5-A, low-IQ, dual ideal diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "0.6" + (at 29.21 -394.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Part Number" "595-LM66200DRLR" + (at 29.21 -494.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/LM66200DRLR?qs=Rp5uXu7WBW90hnpZAkIOdQ%3D%3D" + (at 29.21 -594.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Texas Instruments" + (at 29.21 -694.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "LM66200DRLR" + (at 29.21 -794.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (symbol "LM66200DRLR_1_1" + (rectangle + (start 5.08 2.54) + (end 27.94 -10.16) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at 0 0 0) + (length 5.08) + (name "GND_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 0) + (length 5.08) + (name "VOUT_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -5.08 0) + (length 5.08) + (name "VIN1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -7.62 0) + (length 5.08) + (name "~{ON}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 0 180) + (length 5.08) + (name "GND_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 -2.54 180) + (length 5.08) + (name "VIN2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 -5.08 180) + (length 5.08) + (name "VOUT_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 -7.62 180) + (length 5.08) + (name "ST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) (symbol "Samacsys:LMR51635YDDCR" (exclude_from_sim no) (in_bom yes) @@ -229,6 +1059,356 @@ ) (embedded_fonts no) ) + (symbol "Samacsys:MSD-1-A" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 29.21 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Value" "MSD-1-A" + (at 29.21 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Footprint" "Samacsys:MSD1A" + (at 29.21 -94.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "https://www.sameskydevices.com/product/resource/msd-1-a.pdf" + (at 29.21 -194.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "Micro SD Card Connector, 9 Contacts, Connector and Ejector, Push In, Auto Eject Out, Surface Mount, 1.8 mm Height Above Board, Gold Flash" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "2" + (at 29.21 -394.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Part Number" "179-MSD-1-A" + (at 29.21 -494.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Same-Sky/MSD-1-A?qs=Z%252BL2brAPG1Ip18XLC4tUPQ%3D%3D" + (at 29.21 -594.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Same Sky" + (at 29.21 -694.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "MSD-1-A" + (at 29.21 -794.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (symbol "MSD-1-A_1_1" + (rectangle + (start 5.08 2.54) + (end 27.94 -17.78) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at 0 0 0) + (length 5.08) + (name "DAT2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 0) + (length 5.08) + (name "CD/DAT3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -5.08 0) + (length 5.08) + (name "CMD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -7.62 0) + (length 5.08) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 0) + (length 5.08) + (name "CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -12.7 0) + (length 5.08) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -15.24 0) + (length 5.08) + (name "DAT0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 0 180) + (length 5.08) + (name "DAT1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 -2.54 180) + (length 5.08) + (name "GND_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 -5.08 180) + (length 5.08) + (name "GND_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 -7.62 180) + (length 5.08) + (name "GND_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 -10.16 180) + (length 5.08) + (name "GND_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 33.02 -12.7 180) + (length 5.08) + (name "CD1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "CD1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) (symbol "Samacsys:SC1510_13_-A4" (exclude_from_sim no) (in_bom yes) @@ -242,7 +1422,7 @@ (justify left top) ) ) - (property "Value" "SC1510_13_-A4" + (property "Value" "SC1512-A4" (at 62.23 22.86 0) (effects (font @@ -271,7 +1451,7 @@ (hide yes) ) ) - (property "Description" "ARM Microcontrollers - MCU RP2350B 150MHz clock Dual Arm Cortex-M33 cores 520KB RAM 8KB on-chip QFN-80" + (property "Description" "ARM Microcontrollers - MCU RP2354B 150MHz clock Dual Arm Cortex-M33 cores 520KB RAM 8KB on-chip QFN-80" (at 0 0 0) (effects (font @@ -320,7 +1500,7 @@ (hide yes) ) ) - (property "Manufacturer_Part_Number" "SC1510(13)-A4" + (property "Manufacturer_Part_Number" "SC1512-A4" (at 62.23 -777.14 0) (effects (font @@ -2359,7 +3539,7 @@ ) (embedded_fonts no) ) - (symbol "Samacsys:SMBJ26A" + (symbol "Samacsys:SMBJ28A" (pin_names (hide yes) ) @@ -2375,7 +3555,7 @@ (justify left bottom) ) ) - (property "Value" "SMBJ26A" + (property "Value" "SMBJ28A" (at 10.16 6.35 0) (effects (font @@ -2384,7 +3564,7 @@ (justify left bottom) ) ) - (property "Footprint" "Samacsys:DIOM5436X261N" + (property "Footprint" "Samacsys:DIOM5436X244N" (at 10.16 -93.65 0) (effects (font @@ -2394,7 +3574,7 @@ (hide yes) ) ) - (property "Datasheet" "https://www.littelfuse.com/assetdocs/tvs-diodes-smbj-series-datasheet?assetguid=09a6ae9a-73cb-4ac4-acac-e6dab92ab953" + (property "Datasheet" "http://www.vishay.com/docs/88392/smbj.pdf" (at 10.16 -193.65 0) (effects (font @@ -2404,7 +3584,7 @@ (hide yes) ) ) - (property "Description" "ESD Protection Diodes / TVS Diodes 1-Line 26V 14.3A TVS DO-214AA(SMB)" + (property "Description" "SMBJ28A transient suppressor,28V 600W" (at 0 0 0) (effects (font @@ -2413,7 +3593,7 @@ (hide yes) ) ) - (property "Height" "2.61" + (property "Height" "2.44" (at 10.16 -393.65 0) (effects (font @@ -2423,7 +3603,7 @@ (hide yes) ) ) - (property "Mouser Part Number" "" + (property "Mouser Part Number" "78-SMBJ28A" (at 10.16 -493.65 0) (effects (font @@ -2433,7 +3613,7 @@ (hide yes) ) ) - (property "Mouser Price/Stock" "" + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Vishay-General-Semiconductor/SMBJ28A?qs=%252BA9HMDDz5KaThyUIsIyfBQ%3D%3D" (at 10.16 -593.65 0) (effects (font @@ -2443,7 +3623,7 @@ (hide yes) ) ) - (property "Manufacturer_Name" "SEMTECH" + (property "Manufacturer_Name" "Vishay" (at 10.16 -693.65 0) (effects (font @@ -2453,7 +3633,7 @@ (hide yes) ) ) - (property "Manufacturer_Part_Number" "SMBJ26A" + (property "Manufacturer_Part_Number" "SMBJ28A" (at 10.16 -793.65 0) (effects (font @@ -2463,7 +3643,7 @@ (hide yes) ) ) - (symbol "SMBJ26A_1_1" + (symbol "SMBJ28A_1_1" (polyline (pts (xy 4.064 2.54) (xy 5.08 2.032) @@ -2781,6 +3961,816 @@ ) (embedded_fonts no) ) + (symbol "Samacsys:TPD1E10B06DPYR" + (pin_names + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 12.7 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Value" "TPD1E10B06DPYR" + (at 12.7 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Footprint" "Samacsys:TPD1E10B06DPYR" + (at 12.7 -93.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 12.7 -193.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Description" "ESD Suppressors / TVS Diodes Sgl Channel ESD TPD1E10B06 Single-Channel ESD Protection Diode in 0402 Package" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "0.45" + (at 12.7 -393.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Mouser Part Number" "595-TPD1E10B06DPYR" + (at 12.7 -493.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/TPD1E10B06DPYR?qs=UFc95S4Z4CaJYpQ4xqTc0g%3D%3D" + (at 12.7 -593.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Texas Instruments" + (at 12.7 -693.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "TPD1E10B06DPYR" + (at 12.7 -793.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (symbol "TPD1E10B06DPYR_1_1" + (polyline + (pts + (xy 5.08 2.54) (xy 5.08 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 2.54) (xy 10.16 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 9.144 2.54) (xy 10.16 2.032) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 0) (xy 5.08 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 0) (xy 15.24 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -2.032) (xy 10.16 2.032) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -2.032) (xy 11.176 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.24 2.54) (xy 10.16 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.24 2.54) (xy 15.24 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at 0 0 0) + (length 5.08) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 20.32 0 180) + (length 5.08) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Samacsys:TPD2EUSB30DRTR" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 21.59 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Value" "TPD2EUSB30DRTR" + (at 21.59 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (property "Footprint" "Samacsys:SOTFL35P100X50-3N" + (at 21.59 -94.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/SFDatasheet-11/sf-000234749.pdf" + (at 21.59 -194.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "Texas Instruments TPD2EUSB30DRTR Dual Bi-Directional TVS Diode Array, 45W peak, 3-Pin SOT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "0.5" + (at 21.59 -394.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Part Number" "595-TPD2EUSB30DRTR" + (at 21.59 -494.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/TPD2EUSB30DRTR?qs=%2Fqzd9s%252BcLd6bPJi5HXCDvw%3D%3D" + (at 21.59 -594.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Texas Instruments" + (at 21.59 -694.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "TPD2EUSB30DRTR" + (at 21.59 -794.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (symbol "TPD2EUSB30DRTR_1_1" + (rectangle + (start 5.08 2.54) + (end 20.32 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at 0 0 0) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 0) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 0 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Snapeda:2171750001" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -12.7 13.2842 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Value" "2171750001" + (at -12.7 -15.24 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Footprint" "Snapeda:MOLEX_2171750001" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MF" "Molex" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "OPTION" "MOLEX_CONFIG" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Package" "None" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Price" "None" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/2171750001/Molex/view-part/?ref=eda" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer Recommendations" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "A1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/2171750001/Molex/view-part/?ref=snap" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "2171750001" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=5817411&manufacturer=Molex&part_name=2171750001&search_term=2171750001" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "USB-C (USB TYPE-C) USB 2.0 Receptacle Connector 24 (6+18 Dummy) - Power Only 6 Pin Position Surface Mount, Right Angle; Through Hole" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "Molex" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "In Stock" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "3.26mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (symbol "2171750001_0_0" + (rectangle + (start -12.7 -12.7) + (end 12.7 12.7) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin bidirectional line + (at -17.78 10.16 0) + (length 5.08) + (name "CC1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "A5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at -17.78 5.08 0) + (length 5.08) + (name "VBUS1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "A9" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at -17.78 2.54 0) + (length 5.08) + (name "VBUS2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "B9" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin bidirectional line + (at 17.78 10.16 180) + (length 5.08) + (name "CC2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "B5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 17.78 5.08 180) + (length 5.08) + (name "GND1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "A12" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 17.78 2.54 180) + (length 5.08) + (name "GND2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "B12" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 17.78 -2.54 180) + (length 5.08) + (name "SHIELD1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "SH1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 17.78 -5.08 180) + (length 5.08) + (name "SHIELD2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "SH2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 17.78 -7.62 180) + (length 5.08) + (name "SHIELD3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "SH3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 17.78 -10.16 180) + (length 5.08) + (name "SHIELD4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "SH4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) (symbol "Snapeda:BMI270" (pin_names (offset 0.254) @@ -3399,10 +5389,353 @@ ) (embedded_fonts no) ) + (symbol "Snapeda:TL3315NF160Q" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "S" + (at -7.62 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Value" "TL3315NF160Q" + (at -7.62 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Footprint" "Snapeda:SW_TL3315NF160Q" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MF" "E-Switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "0.8mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Package" "None" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Price" "None" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/TL3315NF160Q/E-Switch/view-part/?ref=eda" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer recommendations" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "B" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/TL3315NF160Q/E-Switch/view-part/?ref=snap" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "TL3315NF160Q" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=553747&manufacturer=E-Switch&part_name=TL3315NF160Q&search_term=tl3315nf160q" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "TACT, 50mA, 15VDC SPST-NO, Off-(On), Surface Mount" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "In Stock" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "E-Switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (symbol "TL3315NF160Q_0_0" + (polyline + (pts + (xy -5.08 0) (xy -3.048 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 1.5875) (xy 0 1.5875) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -2.54 0) + (radius 0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 1.5875) (xy 0 3.4925) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 1.5875) (xy 2.54 1.5875) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 0) + (radius 0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 0) (xy 3.048 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -7.62 0 0) + (length 2.54) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -7.62 0 0) + (length 2.54) + (hide yes) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (hide yes) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) ) (text "Barometer" (exclude_from_sim no) - (at 241.3 39.624 0) + (at 271.78 33.274 0) (effects (font (size 1.27 1.27) @@ -3410,9 +5743,29 @@ ) (uuid "020c16a2-5a5d-4984-84bc-987b407b3f78") ) + (text "TVS\nVBATT" + (exclude_from_sim no) + (at 228.346 181.102 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "07379670-358c-4af6-86a3-235bd7e9b575") + ) + (text "VBUS\nTVS" + (exclude_from_sim no) + (at 314.452 81.788 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "2b22f305-26fe-4c50-8fc3-4687695960d6") + ) (text "VBAT => 5V\nRegulator" (exclude_from_sim no) - (at 195.326 178.816 0) + (at 158.496 173.736 0) (effects (font (size 1.27 1.27) @@ -3420,9 +5773,49 @@ ) (uuid "33b14190-a299-4d0a-8ef3-68debe0f9c87") ) + (text "RST\nSwitch" + (exclude_from_sim no) + (at 170.434 89.154 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "3988e224-9afb-42a8-9bdd-e28a4c3e4f9f") + ) + (text "Bootsel\nSwitch" + (exclude_from_sim no) + (at 146.304 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "4ca73ed7-8ad7-49d4-9d49-bd85d6c8bea3") + ) + (text "12MhZ\nCrystal" + (exclude_from_sim no) + (at 133.35 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "5d73ea26-8dac-4564-87b4-c60dc2edcad8") + ) + (text "Power supply\nAuto switcher" + (exclude_from_sim no) + (at 211.836 131.318 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "645fc751-f158-4e36-839d-dd5b6a437ba3") + ) (text "VTX\nConnector" (exclude_from_sim no) - (at 214.63 110.744 0) + (at 298.45 167.894 0) (effects (font (size 1.27 1.27) @@ -3430,9 +5823,19 @@ ) (uuid "71add48c-974d-4647-a327-a556fdfe9983") ) + (text "USB port" + (exclude_from_sim no) + (at 261.874 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "7224a876-99fc-44f6-b007-c2462b63fcba") + ) (text "VBAT => 10V\nRegulator" (exclude_from_sim no) - (at 195.58 153.416 0) + (at 158.75 148.336 0) (effects (font (size 1.27 1.27) @@ -3440,9 +5843,19 @@ ) (uuid "7a162a59-57d8-4167-b039-90753d359e89") ) + (text "SD card holder" + (exclude_from_sim no) + (at 271.272 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "941a93af-d1cf-46f7-b1ad-2bf45b983a39") + ) (text "MCU\nRp2350" (exclude_from_sim no) - (at 118.364 99.822 0) + (at 116.586 101.346 0) (effects (font (size 1.27 1.27) @@ -3452,7 +5865,7 @@ ) (text "5 => 3.3V\nRegulator" (exclude_from_sim no) - (at 231.14 166.878 0) + (at 194.31 161.798 0) (effects (font (size 1.27 1.27) @@ -3460,9 +5873,19 @@ ) (uuid "c5a81c1a-aaa1-4581-9328-a3ce698b3a90") ) + (text "Buzzer\nMosfet" + (exclude_from_sim no) + (at 197.358 88.138 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "c851a6ff-9757-4eb6-8ad1-c8da52cb3c78") + ) (text "IMU" (exclude_from_sim no) - (at 184.658 37.846 0) + (at 220.218 30.226 0) (effects (font (size 1.27 1.27) @@ -3470,9 +5893,19 @@ ) (uuid "cd3bbf5a-8138-4973-b6bb-155a5bcce35f") ) + (text "D+ D-\nTVS" + (exclude_from_sim no) + (at 305.562 112.776 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "cf384073-7847-4b61-8d6a-f4bae7205691") + ) (text "ESC\nConnector" (exclude_from_sim no) - (at 214.884 72.644 0) + (at 263.906 165.608 0) (effects (font (size 1.27 1.27) @@ -3481,53 +5914,43 @@ (uuid "d089bf23-4f00-464e-b83c-ae94bb77136b") ) (symbol - (lib_id "Samacsys:SMBJ26A") - (at 250.19 76.2 0) + (lib_id "Snapeda:TL3315NF160Q") + (at 158.75 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) - (uuid "1b857f5d-f45b-4723-a8be-585317ed793c") - (property "Reference" "D1" - (at 257.302 68.58 0) + (uuid "0fa9f43a-e77b-4ad5-b3ce-49b8291705e2") + (property "Reference" "S1" + (at 158.75 86.36 0) (effects (font (size 1.27 1.27) ) ) ) - (property "Value" "SMBJ26A" - (at 257.302 71.12 0) + (property "Value" "TL3315NF160Q" + (at 158.75 88.9 0) (effects (font (size 1.27 1.27) ) ) ) - (property "Footprint" "Samacsys:DIOM5436X261N" - (at 260.35 169.85 0) + (property "Footprint" "Snapeda:SW_TL3315NF160Q" + (at 158.75 95.25 0) (effects (font (size 1.27 1.27) ) - (justify left bottom) + (justify bottom) (hide yes) ) ) - (property "Datasheet" "https://www.littelfuse.com/assetdocs/tvs-diodes-smbj-series-datasheet?assetguid=09a6ae9a-73cb-4ac4-acac-e6dab92ab953" - (at 260.35 269.85 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - (hide yes) - ) - ) - (property "Description" "ESD Protection Diodes / TVS Diodes 1-Line 26V 14.3A TVS DO-214AA(SMB)" - (at 250.19 76.2 0) + (property "Datasheet" "" + (at 158.75 95.25 0) (effects (font (size 1.27 1.27) @@ -3535,66 +5958,546 @@ (hide yes) ) ) - (property "Height" "2.61" - (at 260.35 469.85 0) + (property "Description" "" + (at 158.75 95.25 0) (effects (font (size 1.27 1.27) ) - (justify left bottom) (hide yes) ) ) - (property "Mouser Part Number" "" - (at 260.35 569.85 0) + (property "MF" "E-Switch" + (at 158.75 95.25 0) (effects (font (size 1.27 1.27) ) - (justify left bottom) + (justify bottom) (hide yes) ) ) - (property "Mouser Price/Stock" "" - (at 260.35 669.85 0) + (property "MAXIMUM_PACKAGE_HEIGHT" "0.8mm" + (at 158.75 95.25 0) (effects (font (size 1.27 1.27) ) - (justify left bottom) + (justify bottom) (hide yes) ) ) - (property "Manufacturer_Name" "SEMTECH" - (at 260.35 769.85 0) + (property "Package" "None" + (at 158.75 95.25 0) (effects (font (size 1.27 1.27) ) - (justify left bottom) + (justify bottom) (hide yes) ) ) - (property "Manufacturer_Part_Number" "SMBJ26A" - (at 260.35 869.85 0) + (property "Price" "None" + (at 158.75 95.25 0) (effects (font (size 1.27 1.27) ) - (justify left bottom) + (justify bottom) (hide yes) ) ) - (pin "1" - (uuid "8534912a-8904-4b8a-bd75-ac354dbd625e") + (property "Check_prices" "https://www.snapeda.com/parts/TL3315NF160Q/E-Switch/view-part/?ref=eda" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer recommendations" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "B" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/TL3315NF160Q/E-Switch/view-part/?ref=snap" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "TL3315NF160Q" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=553747&manufacturer=E-Switch&part_name=TL3315NF160Q&search_term=tl3315nf160q" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "TACT, 50mA, 15VDC SPST-NO, Off-(On), Surface Mount" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "In Stock" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "E-Switch" + (at 158.75 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (pin "3" + (uuid "18cc9dab-7347-4671-9d5b-2aa3867c336c") + ) + (pin "4" + (uuid "a78e90da-b597-42a2-8b2b-9a30ca005f2a") ) (pin "2" - (uuid "f0360ee3-1fc2-4896-8be1-68980873e22a") + (uuid "39a519b6-efec-4b3f-9f03-669228ba2b0c") + ) + (pin "1" + (uuid "18000b60-c844-49c6-920e-54817f81773a") ) (instances (project "" (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" - (reference "D1") + (reference "S1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Samacsys:MSD-1-A") + (at 243.84 128.27 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "237ced52-1aa6-42db-86b7-f3d6f2d3595d") + (property "Reference" "J4" + (at 260.35 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MSD-1-A" + (at 260.35 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Samacsys:MSD1A" + (at 273.05 223.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "https://www.sameskydevices.com/product/resource/msd-1-a.pdf" + (at 273.05 323.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "Micro SD Card Connector, 9 Contacts, Connector and Ejector, Push In, Auto Eject Out, Surface Mount, 1.8 mm Height Above Board, Gold Flash" + (at 243.84 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "2" + (at 273.05 523.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Part Number" "179-MSD-1-A" + (at 273.05 623.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Same-Sky/MSD-1-A?qs=Z%252BL2brAPG1Ip18XLC4tUPQ%3D%3D" + (at 273.05 723.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Same Sky" + (at 273.05 823.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "MSD-1-A" + (at 273.05 923.19 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (pin "4" + (uuid "f12e6dc2-67b6-4e83-8c10-9672ad090a5d") + ) + (pin "3" + (uuid "86eaddc5-e429-41d4-b786-d66a1f2b709d") + ) + (pin "2" + (uuid "7be8f4e6-4cc5-46d8-98f5-953327a67e24") + ) + (pin "1" + (uuid "7b1251f0-361f-4ef9-a834-0727cdc16a85") + ) + (pin "CD1" + (uuid "acdafefb-525b-4cb6-8e89-4199522c6536") + ) + (pin "12" + (uuid "a5ba7e84-e040-4e56-840c-764c37a96c2b") + ) + (pin "11" + (uuid "d30714be-d31a-453e-896e-04dcc01c67af") + ) + (pin "10" + (uuid "e89bb85b-2a99-40f4-a0a2-e7e8ed2532da") + ) + (pin "9" + (uuid "db100369-4fec-49d7-a67d-8f01be670e80") + ) + (pin "8" + (uuid "ff85ccb1-205b-46ff-913f-54e9a7e91a88") + ) + (pin "7" + (uuid "361f20b3-f393-4525-95f3-4fb7df66d1d2") + ) + (pin "6" + (uuid "8872e76b-a747-4711-9b9b-3bd7550c8596") + ) + (pin "5" + (uuid "ccd1dcaa-a528-4708-9fbb-0afc06447f98") + ) + (instances + (project "" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "J4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Snapeda:2171750001") + (at 261.62 100.33 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2be35f81-aaa1-4cb9-a32b-20bec2702c5c") + (property "Reference" "J3" + (at 281.94 90.17 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "2171750001" + (at 281.94 92.71 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "Snapeda:MOLEX_2171750001" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.molex.com/en-us/products/part-detail-pdf/2171750001?display=pdf" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MF" "Molex" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "OPTION" "MOLEX_CONFIG" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Package" "None" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Price" "None" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/2171750001/Molex/view-part/?ref=eda" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer Recommendations" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "A1" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/2171750001/Molex/view-part/?ref=snap" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "2171750001" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=5817411&manufacturer=Molex&part_name=2171750001&search_term=2171750001" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "USB-C (USB TYPE-C) USB 2.0 Receptacle Connector 24 (6+18 Dummy) - Power Only 6 Pin Position Surface Mount, Right Angle; Through Hole" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "Molex" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "In Stock" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "3.26mm" + (at 261.62 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (pin "B9" + (uuid "6769f676-f10c-4ecb-b70f-3d64bacd232e") + ) + (pin "A12" + (uuid "42b5535f-0d75-4dce-a9a3-47a42d4f6b59") + ) + (pin "B12" + (uuid "538f3d8c-b4f7-45c8-985b-effd4df1feee") + ) + (pin "B5" + (uuid "ef701ecd-21ba-4725-ba3a-9360aca0f6f2") + ) + (pin "A9" + (uuid "b2fa208e-56d3-456d-95aa-ea3a195a1d48") + ) + (pin "A5" + (uuid "0bf4b8e9-626c-40b3-a8aa-27f7bf533967") + ) + (pin "SH2" + (uuid "3a76a416-6a95-4409-85fb-fd0447829b37") + ) + (pin "SH1" + (uuid "06680787-bbb6-4738-b1f9-616812dc5736") + ) + (pin "SH3" + (uuid "c28d268c-64c4-4444-83bc-c2aad723f9d6") + ) + (pin "SH4" + (uuid "f92996ea-2d84-4fb3-88c6-03156a0352a7") + ) + (instances + (project "" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "J3") (unit 1) ) ) @@ -3602,7 +6505,7 @@ ) (symbol (lib_id "Samacsys:LMR51635YDDCR") - (at 182.88 166.37 0) + (at 146.05 161.29 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -3611,7 +6514,7 @@ (fields_autoplaced yes) (uuid "2c0b3578-708f-4031-8854-d05d894d9e82") (property "Reference" "IC3" - (at 195.58 158.75 0) + (at 158.75 153.67 0) (effects (font (size 1.27 1.27) @@ -3619,7 +6522,7 @@ ) ) (property "Value" "LMR51635YDDCR" - (at 195.58 161.29 0) + (at 158.75 156.21 0) (effects (font (size 1.27 1.27) @@ -3627,7 +6530,7 @@ ) ) (property "Footprint" "Samacsys:SOT95P280X110-6N" - (at 204.47 261.29 0) + (at 167.64 256.21 0) (effects (font (size 1.27 1.27) @@ -3637,7 +6540,7 @@ ) ) (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lmr51625.pdf?ts=1744945652901" - (at 204.47 361.29 0) + (at 167.64 356.21 0) (effects (font (size 1.27 1.27) @@ -3647,7 +6550,7 @@ ) ) (property "Description" "Switching Voltage Regulators SIMPLE SWITCHER synchronous buck converter with 4.3V-to-60V, 3.5A and low quiescent current" - (at 182.88 166.37 0) + (at 146.05 161.29 0) (effects (font (size 1.27 1.27) @@ -3656,7 +6559,7 @@ ) ) (property "Height" "1.1" - (at 204.47 561.29 0) + (at 167.64 556.21 0) (effects (font (size 1.27 1.27) @@ -3666,7 +6569,7 @@ ) ) (property "Mouser Part Number" "595-LMR51635YDDCR" - (at 204.47 661.29 0) + (at 167.64 656.21 0) (effects (font (size 1.27 1.27) @@ -3676,7 +6579,7 @@ ) ) (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/LMR51635YDDCR?qs=efUn273yAhf6vdsp91a46w%3D%3D" - (at 204.47 761.29 0) + (at 167.64 756.21 0) (effects (font (size 1.27 1.27) @@ -3686,7 +6589,7 @@ ) ) (property "Manufacturer_Name" "Texas Instruments" - (at 204.47 861.29 0) + (at 167.64 856.21 0) (effects (font (size 1.27 1.27) @@ -3696,7 +6599,7 @@ ) ) (property "Manufacturer_Part_Number" "LMR51635YDDCR" - (at 204.47 961.29 0) + (at 167.64 956.21 0) (effects (font (size 1.27 1.27) @@ -3732,9 +6635,223 @@ ) ) ) + (symbol + (lib_id "Device:Crystal_GND24") + (at 133.35 90.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3cb08151-bc0d-460c-adbd-4c7991443d14") + (property "Reference" "Y1" + (at 133.35 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Crystal_GND24" + (at 133.35 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" + (at 133.35 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 133.35 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Four pin crystal, GND on pins 2 and 4" + (at 133.35 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property private "KLC_S3.3" "The rectangle is not a symbol body but a graphical element" + (at 133.35 102.87 0) + (show_name yes) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property private "KLC_S4.1" "Some pins are on 50mil grid to make the symbol small" + (at 133.35 105.41 0) + (show_name yes) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "553e69ae-a133-489f-8844-625b7d307c56") + ) + (pin "1" + (uuid "2c65db45-a229-4943-ac57-e4ea0afa72a7") + ) + (pin "4" + (uuid "d771bf9f-8677-44ee-8fc6-d395f4c45acf") + ) + (pin "2" + (uuid "c1c00335-f212-459d-afd4-bcd3ad97632c") + ) + (instances + (project "" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "Y1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Samacsys:TPD1E10B06DPYR") + (at 298.45 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "530cc148-b7fe-454e-9f7b-3f9f247b016b") + (property "Reference" "D3" + (at 308.61 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TPD1E10B06DPYR" + (at 308.61 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Samacsys:TPD1E10B06DPYR" + (at 311.15 185.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 311.15 285.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Description" "ESD Suppressors / TVS Diodes Sgl Channel ESD TPD1E10B06 Single-Channel ESD Protection Diode in 0402 Package" + (at 298.45 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "0.45" + (at 311.15 485.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Mouser Part Number" "595-TPD1E10B06DPYR" + (at 311.15 585.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/TPD1E10B06DPYR?qs=UFc95S4Z4CaJYpQ4xqTc0g%3D%3D" + (at 311.15 685.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Texas Instruments" + (at 311.15 785.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "TPD1E10B06DPYR" + (at 311.15 885.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (pin "2" + (uuid "ce109509-6557-4e31-9213-85180ccb7a3b") + ) + (pin "1" + (uuid "0b35f47f-1740-4790-a836-ce5222551a28") + ) + (instances + (project "" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "D3") + (unit 1) + ) + ) + ) + ) (symbol (lib_id "Samacsys:SM08B-SRSS-TB") - (at 203.2 83.82 0) + (at 245.11 173.99 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -3743,7 +6860,7 @@ (fields_autoplaced yes) (uuid "5c479de5-45a8-4700-a7b3-971954a911a9") (property "Reference" "J2" - (at 214.63 76.2 0) + (at 256.54 166.37 0) (effects (font (size 1.27 1.27) @@ -3751,7 +6868,7 @@ ) ) (property "Value" "SM08B-SRSS-TB" - (at 214.63 78.74 0) + (at 256.54 168.91 0) (effects (font (size 1.27 1.27) @@ -3759,7 +6876,7 @@ ) ) (property "Footprint" "Samacsys:SM08BSRSSTB" - (at 222.25 178.74 0) + (at 264.16 268.91 0) (effects (font (size 1.27 1.27) @@ -3769,7 +6886,7 @@ ) ) (property "Datasheet" "https://www.jst-mfg.com/product/pdf/eng/eSH.pdf" - (at 222.25 278.74 0) + (at 264.16 368.91 0) (effects (font (size 1.27 1.27) @@ -3779,7 +6896,7 @@ ) ) (property "Description" "Connector Header Surface Mount, Right Angle 8 position 0.039\" (1.00mm)" - (at 203.2 83.82 0) + (at 245.11 173.99 0) (effects (font (size 1.27 1.27) @@ -3788,7 +6905,7 @@ ) ) (property "Height" "2.95" - (at 222.25 478.74 0) + (at 264.16 568.91 0) (effects (font (size 1.27 1.27) @@ -3798,7 +6915,7 @@ ) ) (property "Mouser Part Number" "N/A" - (at 222.25 578.74 0) + (at 264.16 668.91 0) (effects (font (size 1.27 1.27) @@ -3808,7 +6925,7 @@ ) ) (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/JST-Commercial/SM08B-SRSS-TB?qs=IKkN%2F947nfBrj0Hsszhebg%3D%3D" - (at 222.25 678.74 0) + (at 264.16 768.91 0) (effects (font (size 1.27 1.27) @@ -3818,7 +6935,7 @@ ) ) (property "Manufacturer_Name" "JST (JAPAN SOLDERLESS TERMINALS)" - (at 222.25 778.74 0) + (at 264.16 868.91 0) (effects (font (size 1.27 1.27) @@ -3828,7 +6945,7 @@ ) ) (property "Manufacturer_Part_Number" "SM08B-SRSS-TB" - (at 222.25 878.74 0) + (at 264.16 968.91 0) (effects (font (size 1.27 1.27) @@ -3877,33 +6994,35 @@ ) ) (symbol - (lib_id "Samacsys:TLV75533PDBVR") - (at 218.44 179.07 0) + (lib_id "Samacsys:2N7002") + (at 198.12 96.52 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) - (uuid "992983fe-a79e-49da-9324-594033d51b07") - (property "Reference" "IC2" - (at 231.14 171.45 0) + (uuid "692c0eb0-8bae-4e00-86b4-06c82e843b2e") + (property "Reference" "Q1" + (at 209.55 92.7099 0) (effects (font (size 1.27 1.27) ) + (justify left) ) ) - (property "Value" "TLV75533PDBVR" - (at 231.14 173.99 0) + (property "Value" "2N7002" + (at 209.55 95.2499 0) (effects (font (size 1.27 1.27) ) + (justify left) ) ) - (property "Footprint" "Samacsys:SOT95P280X145-5N" - (at 240.03 273.99 0) + (property "Footprint" "Samacsys:SOT96P240X120-3N" + (at 209.55 195.25 0) (effects (font (size 1.27 1.27) @@ -3912,8 +7031,8 @@ (hide yes) ) ) - (property "Datasheet" "http://www.ti.com/lit/gpn/tlv755p" - (at 240.03 373.99 0) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" + (at 209.55 295.25 0) (effects (font (size 1.27 1.27) @@ -3922,8 +7041,8 @@ (hide yes) ) ) - (property "Description" "LDO Voltage Regulators 500-mA, Low IQ, Small Size, Low Dropout Regulator 5-SOT-23 -40 to 125" - (at 218.44 179.07 0) + (property "Description" "Voltage controlled small signal switch.; High density cell design for extremely low RDS(ON).; Rugged and Reliable.; High saturation current capability." + (at 198.12 96.52 0) (effects (font (size 1.27 1.27) @@ -3931,8 +7050,8 @@ (hide yes) ) ) - (property "Height" "1.45" - (at 240.03 573.99 0) + (property "Height" "1.2" + (at 209.55 495.25 0) (effects (font (size 1.27 1.27) @@ -3941,8 +7060,8 @@ (hide yes) ) ) - (property "Mouser Part Number" "595-TLV75533PDBVR" - (at 240.03 673.99 0) + (property "Mouser Part Number" "512-2N7002" + (at 209.55 595.25 0) (effects (font (size 1.27 1.27) @@ -3951,8 +7070,131 @@ (hide yes) ) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/TLV75533PDBVR?qs=55YtniHzbhAKEwqeO2xJXQ%3D%3D" - (at 240.03 773.99 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/onsemi-Fairchild/2N7002?qs=0dwsXDNhqlz66WJJhrTFjQ%3D%3D" + (at 209.55 695.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Name" "onsemi" + (at 209.55 795.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "2N7002" + (at 209.55 895.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (pin "3" + (uuid "bb0f7637-8d75-4c20-8d0a-415828399580") + ) + (pin "2" + (uuid "b305c5f5-e9a1-4a02-ad51-b26d67516436") + ) + (pin "1" + (uuid "960aa7de-b534-4b9c-a20e-454b8b62a204") + ) + (instances + (project "" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "Q1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Samacsys:TPD2EUSB30DRTR") + (at 292.1 104.14 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "73c2b69d-ada3-45d7-bcaf-22aaf584d02a") + (property "Reference" "D2" + (at 304.8 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TPD2EUSB30DRTR" + (at 304.8 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Samacsys:SOTFL35P100X50-3N" + (at 313.69 199.06 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/SFDatasheet-11/sf-000234749.pdf" + (at 313.69 299.06 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "Texas Instruments TPD2EUSB30DRTR Dual Bi-Directional TVS Diode Array, 45W peak, 3-Pin SOT" + (at 292.1 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "0.5" + (at 313.69 499.06 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Part Number" "595-TPD2EUSB30DRTR" + (at 313.69 599.06 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/TPD2EUSB30DRTR?qs=%2Fqzd9s%252BcLd6bPJi5HXCDvw%3D%3D" + (at 313.69 699.06 0) (effects (font (size 1.27 1.27) @@ -3962,7 +7204,130 @@ ) ) (property "Manufacturer_Name" "Texas Instruments" - (at 240.03 873.99 0) + (at 313.69 799.06 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "TPD2EUSB30DRTR" + (at 313.69 899.06 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (pin "2" + (uuid "ae0bba01-6dea-4b9a-b386-3d826f71d094") + ) + (pin "3" + (uuid "ab47e4cf-ea10-4f80-ad8a-e2ab2c7117b5") + ) + (pin "1" + (uuid "1589c9f6-93be-468c-8a43-501ec726be3f") + ) + (instances + (project "" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "D2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Samacsys:TLV75533PDBVR") + (at 181.61 173.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "992983fe-a79e-49da-9324-594033d51b07") + (property "Reference" "IC2" + (at 194.31 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TLV75533PDBVR" + (at 194.31 168.91 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Samacsys:SOT95P280X145-5N" + (at 203.2 268.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/gpn/tlv755p" + (at 203.2 368.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "LDO Voltage Regulators 500-mA, Low IQ, Small Size, Low Dropout Regulator 5-SOT-23 -40 to 125" + (at 181.61 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "1.45" + (at 203.2 568.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Part Number" "595-TLV75533PDBVR" + (at 203.2 668.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/TLV75533PDBVR?qs=55YtniHzbhAKEwqeO2xJXQ%3D%3D" + (at 203.2 768.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Texas Instruments" + (at 203.2 868.91 0) (effects (font (size 1.27 1.27) @@ -3972,7 +7337,7 @@ ) ) (property "Manufacturer_Part_Number" "TLV75533PDBVR" - (at 240.03 973.99 0) + (at 203.2 968.91 0) (effects (font (size 1.27 1.27) @@ -4007,7 +7372,7 @@ ) (symbol (lib_id "Samacsys:SM06B-SRSS-TB_LF__SN_") - (at 203.2 121.92 0) + (at 287.02 179.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -4016,7 +7381,7 @@ (fields_autoplaced yes) (uuid "9ffa8177-c0a4-479e-8766-cb744fb291da") (property "Reference" "J1" - (at 214.63 114.3 0) + (at 298.45 171.45 0) (effects (font (size 1.27 1.27) @@ -4024,7 +7389,7 @@ ) ) (property "Value" "SM06B-SRSS-TB_LF__SN_" - (at 214.63 116.84 0) + (at 298.45 173.99 0) (effects (font (size 1.27 1.27) @@ -4032,7 +7397,7 @@ ) ) (property "Footprint" "Samacsys:SM06BSRSSTBLFSN" - (at 222.25 216.84 0) + (at 306.07 273.99 0) (effects (font (size 1.27 1.27) @@ -4042,7 +7407,7 @@ ) ) (property "Datasheet" "https://www.mouser.at/datasheet/2/564/eSR_SZ-3476820.pdf" - (at 222.25 316.84 0) + (at 306.07 373.99 0) (effects (font (size 1.27 1.27) @@ -4052,7 +7417,7 @@ ) ) (property "Description" "JST (JAPAN SOLDERLESS TERMINALS) - SM06B-SRSS-TB(LF)(SN) - CONNECTOR, HEADER, SMT, R/A, 1MM, 6WAY" - (at 203.2 121.92 0) + (at 287.02 179.07 0) (effects (font (size 1.27 1.27) @@ -4061,7 +7426,7 @@ ) ) (property "Height" "2.95" - (at 222.25 516.84 0) + (at 306.07 573.99 0) (effects (font (size 1.27 1.27) @@ -4071,7 +7436,7 @@ ) ) (property "Mouser Part Number" "306-M06BSRSSTBLFSNPP" - (at 222.25 616.84 0) + (at 306.07 673.99 0) (effects (font (size 1.27 1.27) @@ -4081,7 +7446,7 @@ ) ) (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/JST-Commercial/SM06B-SRSS-TBLFSN?qs=cdbOS8ANM9CWs8teSZmAdQ%3D%3D" - (at 222.25 716.84 0) + (at 306.07 773.99 0) (effects (font (size 1.27 1.27) @@ -4091,7 +7456,7 @@ ) ) (property "Manufacturer_Name" "JST (JAPAN SOLDERLESS TERMINALS)" - (at 222.25 816.84 0) + (at 306.07 873.99 0) (effects (font (size 1.27 1.27) @@ -4101,7 +7466,7 @@ ) ) (property "Manufacturer_Part_Number" "SM06B-SRSS-TB(LF)(SN)" - (at 222.25 916.84 0) + (at 306.07 973.99 0) (effects (font (size 1.27 1.27) @@ -4144,42 +7509,42 @@ ) ) (symbol - (lib_id "Snapeda:BMP581") - (at 209.55 46.99 0) + (lib_id "Snapeda:TL3315NF160Q") + (at 158.75 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (fields_autoplaced yes) - (uuid "a9de30ad-3c42-4068-b4b4-539d614a7590") - (property "Reference" "U2" - (at 229.87 36.83 0) - (effects - (font - (size 1.524 1.524) - ) - ) - ) - (property "Value" "BMP581" - (at 229.87 39.37 0) - (effects - (font - (size 1.524 1.524) - ) - ) - ) - (property "Footprint" "Snapeda:QFN10_BMP581_BOS-L" - (at 209.55 46.99 0) + (uuid "9ffd950e-709d-4234-a8ae-b6258d1c731b") + (property "Reference" "S2" + (at 158.75 97.79 0) (effects (font (size 1.27 1.27) ) + ) + ) + (property "Value" "TL3315NF160Q" + (at 158.75 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Snapeda:SW_TL3315NF160Q" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) (hide yes) ) ) - (property "Datasheet" "BMP581" - (at 209.55 46.99 0) + (property "Datasheet" "" + (at 158.75 109.22 0) (effects (font (size 1.27 1.27) @@ -4188,7 +7553,211 @@ ) ) (property "Description" "" - (at 209.55 46.99 0) + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MF" "E-Switch" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "0.8mm" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Package" "None" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Price" "None" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/TL3315NF160Q/E-Switch/view-part/?ref=eda" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "STANDARD" "Manufacturer recommendations" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "PARTREV" "B" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/TL3315NF160Q/E-Switch/view-part/?ref=snap" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MP" "TL3315NF160Q" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=553747&manufacturer=E-Switch&part_name=TL3315NF160Q&search_term=tl3315nf160q" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Description_1" "TACT, 50mA, 15VDC SPST-NO, Off-(On), Surface Mount" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "Availability" "In Stock" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (property "MANUFACTURER" "E-Switch" + (at 158.75 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + (hide yes) + ) + ) + (pin "3" + (uuid "7cb78653-7779-4e35-ad4f-3a4a679e750b") + ) + (pin "4" + (uuid "4ce87f1f-f94f-4d63-8eab-c786323e35fc") + ) + (pin "2" + (uuid "9e33993c-d182-48f7-b2c3-3b93fbe7d5ee") + ) + (pin "1" + (uuid "8bd58c16-269f-4525-90ed-b09801ff41a5") + ) + (instances + (project "RP_FC" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "S2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Snapeda:BMP581") + (at 240.03 40.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a9de30ad-3c42-4068-b4b4-539d614a7590") + (property "Reference" "U2" + (at 260.35 30.48 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "BMP581" + (at 260.35 33.02 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "Snapeda:QFN10_BMP581_BOS-L" + (at 240.03 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "BMP581" + (at 240.03 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 240.03 40.64 0) (effects (font (size 1.27 1.27) @@ -4237,7 +7806,7 @@ ) (symbol (lib_id "Samacsys:LMR51635YDDCR") - (at 182.88 191.77 0) + (at 146.05 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -4246,7 +7815,7 @@ (fields_autoplaced yes) (uuid "ae552216-5963-4192-936c-d37c6c7c4c9e") (property "Reference" "IC4" - (at 195.58 184.15 0) + (at 158.75 179.07 0) (effects (font (size 1.27 1.27) @@ -4254,7 +7823,7 @@ ) ) (property "Value" "LMR51635YDDCR" - (at 195.58 186.69 0) + (at 158.75 181.61 0) (effects (font (size 1.27 1.27) @@ -4262,7 +7831,7 @@ ) ) (property "Footprint" "Samacsys:SOT95P280X110-6N" - (at 204.47 286.69 0) + (at 167.64 281.61 0) (effects (font (size 1.27 1.27) @@ -4272,7 +7841,7 @@ ) ) (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lmr51625.pdf?ts=1744945652901" - (at 204.47 386.69 0) + (at 167.64 381.61 0) (effects (font (size 1.27 1.27) @@ -4282,7 +7851,7 @@ ) ) (property "Description" "Switching Voltage Regulators SIMPLE SWITCHER synchronous buck converter with 4.3V-to-60V, 3.5A and low quiescent current" - (at 182.88 191.77 0) + (at 146.05 186.69 0) (effects (font (size 1.27 1.27) @@ -4291,7 +7860,7 @@ ) ) (property "Height" "1.1" - (at 204.47 586.69 0) + (at 167.64 581.61 0) (effects (font (size 1.27 1.27) @@ -4301,7 +7870,7 @@ ) ) (property "Mouser Part Number" "595-LMR51635YDDCR" - (at 204.47 686.69 0) + (at 167.64 681.61 0) (effects (font (size 1.27 1.27) @@ -4311,7 +7880,7 @@ ) ) (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/LMR51635YDDCR?qs=efUn273yAhf6vdsp91a46w%3D%3D" - (at 204.47 786.69 0) + (at 167.64 781.61 0) (effects (font (size 1.27 1.27) @@ -4321,7 +7890,7 @@ ) ) (property "Manufacturer_Name" "Texas Instruments" - (at 204.47 886.69 0) + (at 167.64 881.61 0) (effects (font (size 1.27 1.27) @@ -4331,7 +7900,7 @@ ) ) (property "Manufacturer_Part_Number" "LMR51635YDDCR" - (at 204.47 986.69 0) + (at 167.64 981.61 0) (effects (font (size 1.27 1.27) @@ -4367,9 +7936,267 @@ ) ) ) + (symbol + (lib_id "Samacsys:SMBJ28A") + (at 228.6 185.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "bcee8334-31ff-4937-858f-466f35da533f") + (property "Reference" "D4" + (at 235.712 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SMBJ28A" + (at 235.712 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Samacsys:DIOM5436X244N" + (at 238.76 279.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Datasheet" "http://www.vishay.com/docs/88392/smbj.pdf" + (at 238.76 379.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Description" "SMBJ28A transient suppressor,28V 600W" + (at 228.6 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "2.44" + (at 238.76 579.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Mouser Part Number" "78-SMBJ28A" + (at 238.76 679.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Vishay-General-Semiconductor/SMBJ28A?qs=%252BA9HMDDz5KaThyUIsIyfBQ%3D%3D" + (at 238.76 779.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Vishay" + (at 238.76 879.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "SMBJ28A" + (at 238.76 979.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + (hide yes) + ) + ) + (pin "2" + (uuid "40dcbaca-8281-4f37-9aee-0149ede7c56c") + ) + (pin "1" + (uuid "ec285975-c224-4c15-b02b-12e31c258b54") + ) + (instances + (project "" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "D4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Samacsys:LM66200DRLR") + (at 180.34 137.16 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "efcace9d-ea1e-44b4-9758-6e066119d226") + (property "Reference" "IC5" + (at 196.85 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LM66200DRLR" + (at 196.85 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Samacsys:SOTFL50P160X60-8N" + (at 209.55 232.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Datasheet" "https://www.ti.com/lit/gpn/lm66200" + (at 209.55 332.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Description" "1.6-V to 5.5-V, 40-m, 2.5-A, low-IQ, dual ideal diode" + (at 180.34 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Height" "0.6" + (at 209.55 532.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Part Number" "595-LM66200DRLR" + (at 209.55 632.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Texas-Instruments/LM66200DRLR?qs=Rp5uXu7WBW90hnpZAkIOdQ%3D%3D" + (at 209.55 732.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Name" "Texas Instruments" + (at 209.55 832.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (property "Manufacturer_Part_Number" "LM66200DRLR" + (at 209.55 932.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + (hide yes) + ) + ) + (pin "4" + (uuid "1f3105d0-7728-46bd-8793-69741093c354") + ) + (pin "3" + (uuid "dcc21f26-8197-4d97-91da-90eacb627701") + ) + (pin "2" + (uuid "c92671b6-b3f3-4a8a-99a0-2628c5224990") + ) + (pin "1" + (uuid "6c3b28db-8ff7-4016-8059-ed1cb273e451") + ) + (pin "8" + (uuid "165442ad-7dd3-4920-9e6e-284013db73f7") + ) + (pin "7" + (uuid "44d27e93-3693-44b0-834b-31d55d876592") + ) + (pin "6" + (uuid "358bf2d8-81fd-4543-802e-3e4ca6c01421") + ) + (pin "5" + (uuid "cfa6770f-0185-4435-b187-32640903910b") + ) + (instances + (project "" + (path "/c1d52523-a791-4d76-a92c-cefcd85111a4" + (reference "IC5") + (unit 1) + ) + ) + ) + ) (symbol (lib_id "Snapeda:BMI270") - (at 154.94 45.72 0) + (at 190.5 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) @@ -4378,7 +8205,7 @@ (fields_autoplaced yes) (uuid "f0515375-0e64-4d91-b593-b0e1130eea62") (property "Reference" "U1" - (at 175.26 35.56 0) + (at 210.82 27.94 0) (effects (font (size 1.524 1.524) @@ -4386,7 +8213,7 @@ ) ) (property "Value" "BMI270" - (at 175.26 38.1 0) + (at 210.82 30.48 0) (effects (font (size 1.524 1.524) @@ -4394,7 +8221,7 @@ ) ) (property "Footprint" "Snapeda:BMI270_BOS-L" - (at 154.94 45.72 0) + (at 190.5 38.1 0) (effects (font (size 1.27 1.27) @@ -4403,7 +8230,7 @@ ) ) (property "Datasheet" "BMI270" - (at 154.94 45.72 0) + (at 190.5 38.1 0) (effects (font (size 1.27 1.27) @@ -4412,7 +8239,7 @@ ) ) (property "Description" "" - (at 154.94 45.72 0) + (at 190.5 38.1 0) (effects (font (size 1.27 1.27) @@ -4482,15 +8309,15 @@ (fields_autoplaced yes) (uuid "f20f59bb-d547-4241-9724-5d39e5e4fe3d") (property "Reference" "IC1" - (at 118.11 110.4198 0) + (at 116.84 110.4198 0) (effects (font (size 1.27 1.27) ) ) ) - (property "Value" "SC1510_13_-A4" - (at 118.11 112.9598 0) + (property "Value" "SC1512-A4" + (at 116.84 112.9598 0) (effects (font (size 1.27 1.27) @@ -4517,7 +8344,7 @@ (hide yes) ) ) - (property "Description" "ARM Microcontrollers - MCU RP2350B 150MHz clock Dual Arm Cortex-M33 cores 520KB RAM 8KB on-chip QFN-80" + (property "Description" "ARM Microcontrollers - MCU RP2354B 150MHz clock Dual Arm Cortex-M33 cores 520KB RAM 8KB on-chip QFN-80" (at 48.26 116.84 0) (effects (font @@ -4566,7 +8393,7 @@ (hide yes) ) ) - (property "Manufacturer_Part_Number" "SC1510(13)-A4" + (property "Manufacturer_Part_Number" "SC1512-A4" (at 110.49 893.98 0) (effects (font diff --git a/RP_FC/fp-info-cache b/RP_FC/fp-info-cache index dd8c306..9a53637 100644 --- a/RP_FC/fp-info-cache +++ b/RP_FC/fp-info-cache @@ -1,4 +1,4 @@ -27098040631173776 +27185293706242894 Audio_Module Reverb_BTDR-1H Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) @@ -98237,6 +98237,279 @@ rotary encoder illuminated switch vertical 0 9 8 +Samacsys +74404054330 +74404054330-1 +Inductor +0 +2 +2 +Samacsys +A2550KLPTRT +16-Pin TSSOP (Suffix LP) with Exposed Pad +Integrated Circuit +0 +17 +17 +Samacsys +ABM8272T3 +ABM8-272-T3-1 +Crystal or Oscillator +0 +4 +4 +Samacsys +AP63203WU7 +AP63203WU-7-5 +Integrated Circuit +0 +6 +6 +Samacsys +APM81815KNBJTR +24-Lead 4 mm × 4 mm QFN (Suffix NB) +Integrated Circuit +0 +22 +22 +Samacsys +AYF533035 +AYF533035-1 +Connector +0 +32 +32 +Samacsys +B3AL1004P +B3AL-1004P-1 +Switch +0 +2 +2 +Samacsys +BWVS005050406R8M00 +5.00mm x 5.00mm x 4.20mm +Inductor +0 +2 +2 +Samacsys +CAPAE430X550N +4.3x4.3 +Capacitor Polarised +0 +2 +2 +Samacsys +CAPAE660X770N +6.6mm x 7.7mm_2023 +Capacitor Polarised +0 +2 +2 +Samacsys +CAPAE830X1050N +EDH(8.3mmX10.2mm) +Capacitor Polarised +0 +2 +2 +Samacsys +CAPAE1300X1400N +cap_5151P +Capacitor Polarised +0 +2 +2 +Samacsys +DIOM5436X261N +DO-214AA (SMB J-Bend) +TVS Diode (Uni-directional) +0 +2 +2 +Samacsys +DIONC1608X90N +82356120100 +TVS Diode (Bi-directional) +0 +2 +2 +Samacsys +LM2576HVSX33NOPB +KTT0005B +Integrated Circuit +0 +7 +7 +Samacsys +MSD1A +MSD-1-A-1 +Connector +0 +13 +13 +Samacsys +PDB12H4301104BF +PDB12-H4301-104BF-2 +Variable Resistor +0 +5 +5 +Samacsys +PTS636SKG25JSMTRLFS +PTS636SKG25JSMTR LFS-2 +Switch +0 +4 +4 +Samacsys +QFN40P400X400X100-33N-D +RSM0032B_2024 +Integrated Circuit +0 +33 +33 +Samacsys +QFN40P1000X1000X90-81N-D +QFN-80_2025 +Integrated Circuit +0 +81 +81 +Samacsys +QFN50P500X600X100-37N-D +BQ25758RRVR- +Integrated Circuit +0 +37 +37 +Samacsys +QFP50P900X900X120-48N +PFB (S-PQFP-G48 +Integrated Circuit +0 +48 +48 +Samacsys +RAA2118034GP3JA0 +TSOT-23 +Integrated Circuit +0 +5 +5 +Samacsys +SM06BSRSSTBLFSN +SM06B-SRSS-TB(LF)(SN)-6 +Connector +0 +8 +8 +Samacsys +SM08BSRSSTB +SM08B-SRSS-TB-1 +Connector +0 +10 +10 +Samacsys +SOIC127P600X170-9N +DDA (PDSO-G8) +Integrated Circuit +0 +9 +9 +Samacsys +SOIC127P600X175-8N +CAT24C512WI-GT3 +Integrated Circuit +0 +8 +8 +Samacsys +SON65P200X200X80-7N +DRV0006A +Integrated Circuit +0 +7 +7 +Samacsys +SOP50P640X120-44N +DBT0044A +Integrated Circuit +0 +44 +44 +Samacsys +SOP254P1016X436-4N +PC817X1CSP9F +Phototransistor +0 +4 +4 +Samacsys +SOT95P280X100-5N +TSOT25 +LED +0 +5 +5 +Samacsys +SOT95P280X110-6N +DDC0006A +Integrated Circuit +0 +6 +6 +Samacsys +SOT95P280X130-5N +SOT-25 +Integrated Circuit +0 +5 +5 +Samacsys +SOT95P280X145-5N +DBV0005A +Integrated Circuit +0 +5 +5 +Samacsys +SOTFL50P160X60-8N +DRL0008A +Integrated Circuit +0 +8 +8 +Samacsys +TPS25751DREFR +REF0038A_2024 +Integrated Circuit +0 +34 +34 +Samacsys +TPS62932DRLR +DRL0008A +Integrated Circuit +0 +8 +8 +Samacsys +USB421603A +USB4216-03-A-3 +Connector +0 +16 +16 +Samacsys +XF3M20151B +XF3M-2015-1B-2 +Connector +0 +22 +22 Sensor ASAIR_AM2302_P2.54mm_Lead2.75mm_TabDown Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/AM2302.pdf @@ -98790,6 +99063,76 @@ LEM Hall Effect Voltage transducer 0 5 5 +Snapeda +2171750001_MOL + +2171750001 +0 +6 +6 +Snapeda +5pin_SO6 + +TLP155ETPL_E +0 +5 +5 +Snapeda +BMI270_BOS-L + +BMI270 +0 +14 +14 +Snapeda +INDM125125X800N + + +0 +2 +2 +Snapeda +MOLEX_2171750001 + + +0 +10 +10 +Snapeda +PCAP_UUG_12P5X21_NCH-L + +UUG1V102MNQ6MS +0 +2 +2 +Snapeda +QFN10_BMP581_BOS-L + +BMP581 +0 +10 +10 +Snapeda +TRANS_DI035N10PT + + +0 +5 +5 +Snapeda +TRANS_DI035N10PT-AQ + + +0 +5 +5 +Snapeda +USB-C + + +0 +10 +7 Socket 3M_Textool_240-1288-00-0602J_2x20_P2.54mm 3M 40-pin zero insertion force socket, though-hole, row spacing 25.4 mm (1000 mils) diff --git a/RP_FC/~RP_FC.kicad_pcb.lck b/RP_FC/~RP_FC.kicad_pcb.lck deleted file mode 100644 index 8459c1a..0000000 --- a/RP_FC/~RP_FC.kicad_pcb.lck +++ /dev/null @@ -1 +0,0 @@ -{"hostname":"Rohmers-MacBook-Pro","username":"rohmermaxime"} \ No newline at end of file diff --git a/RP_FC/~RP_FC.kicad_sch.lck b/RP_FC/~RP_FC.kicad_sch.lck deleted file mode 100644 index 8459c1a..0000000 --- a/RP_FC/~RP_FC.kicad_sch.lck +++ /dev/null @@ -1 +0,0 @@ -{"hostname":"Rohmers-MacBook-Pro","username":"rohmermaxime"} \ No newline at end of file