├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── fp-info-cache ├── fp-lib-table ├── img └── stamp_xl.jpg ├── rp2350_stamp_xl.kicad_pcb ├── rp2350_stamp_xl.kicad_pro ├── rp2350_stamp_xl.kicad_sch ├── rp2350_stamp_xl.step ├── schematics.pdf └── sym-lib-table /.gitignore: -------------------------------------------------------------------------------- 1 | *.kicad_pcb-bak 2 | *.kicad_sch-bak 3 | *.kicad_prl 4 | *.dcm 5 | *.bak 6 | *.bck 7 | *.lck 8 | gerb 9 | gerber 10 | *-backups 11 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "library"] 2 | path = library 3 | url = https://github.com/arturo182/kicad-library.git 4 | [submodule "modules"] 5 | path = modules 6 | url = https://github.com/arturo182/kicad-modules.git 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solderparty/rp2350_stamp_xl_hw/accf40cda26e730370860a890736015bae096956/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # The RP2350 Stamp XL 2 | 3 | ![](./img/stamp_xl.jpg) 4 | 5 | 6 | The Stamp was created to allow you to use the **Raspberry Pi RP2350B** in your designs without having to solder small-pitch QFN chips or worry about lots of external circuitry. 7 | 8 | The RP2350 Stamp XL is partially pad-compatible with the smaller Stamps. The left-side pads as well as half of the top and bottom ones are exactly the same. 9 | 10 | All you need to get you started is a 5V supply or a LiPo battery. The Stamp will take care of the charging and switching the power sources. 11 | 12 | The castellated edges with **2mm pitch** can be hand-soldered directly to a Carrier board, used with pin headers for more flexibility, or connected without soldering using [FlexyPins](https://docs.solder.party/flexypin), which are spring connectors designed for modules with castellated edges. You can find footprints for many PCB programs [here](https://github.com/solderparty/rp2xxx_stamp_footprints). 13 | 14 | We were also able to squeeze in two new functional pads: an LDO EN pad, connected to the LDOs EN signal, and a BAT STAT, connected to the LiPo charger's STAT pin. 15 | 16 | At only **1 by 1¾ inch**, the Stamp XL packs a lot of features: 17 | * **16MB of FLASH** 18 | * **500mA 3.3V LDO** 19 | * **All 48 GPIOs broken out** 20 | * **A footprint for a second QSPI FLASH/PSRAM** 21 | * Footprints for SWD and UART JST connectors, pin-compatible with the Raspberry Pi Debug Probe 22 | * LiPo supply and charging circuit (with charging LED) 23 | * USB broken out 24 | * SWD broken out 25 | * Reset Button 26 | * Bootsel Button 27 | * 12MHz crystal 28 | 29 | and of course, everything that comes with the Raspberry Pi RP2350 itself: 30 | * Dual core ARM Cortex-M33 or Hazard3 @ 150MHz 31 | * 520kB SRAM 32 | * 2 UARTs 33 | * 2 SPIs 34 | * 2 I2Cs 35 | * 24 PWM channels 36 | * 12 PIO state machines 37 | * 1 HSTX peripheral 38 | * USB with Host and Device support 39 | 40 | The RP2350 comes with a pre-programmed ROM UF2 Bootloader, by pulling the BOOTSEL pin low and resetting, or by double-pressing the RESET button (if the FW supports it), you can upload new firmware using the USB disk drive. 41 | 42 | In addition to the Stamps we also offer a few reference designs, see the Carriers in the [Stamp-related category](https://docs.solder.party/rp2xxx-stamp-related) as well as our [Flux projects](https://docs.solder.party/flux). 43 | 44 | The CircuitPython firmware for the Stamp comes with a built-in board files for the Carriers, for example you can access the RP2040 Stamp Carrier pins and interfaces by using `import stamp_carrier_board as board`. See [here](https://github.com/adafruit/circuitpython/tree/main/ports/raspberrypi/boards/solderparty_rp2040_stamp) for all the available Carrier board files. 45 | 46 | # Links 47 | 48 | For more information visit https://rp2350-stamp-xl.solder.party/ 49 | 50 | [![Buy it on Lectronz](https://www.solder.party/lectronz.png)](https://lectronz.com/products/rp2350-stamp-xl) 51 | -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- 1 | (fp_lib_table 2 | (version 7) 3 | (lib (name "Package_DFN_QFN_Extra")(type "KiCad")(uri "${KIPRJMOD}/modules/Package_DFN_QFN_Extra.pretty")(options "")(descr "")) 4 | (lib (name "RP2xxx_stamp")(type "KiCad")(uri "${KIPRJMOD}/RP2xxx_stamp.pretty")(options "")(descr "")) 5 | (lib (name "Symbols_Extra")(type "KiCad")(uri "${KIPRJMOD}/modules/Symbols_Extra.pretty")(options "")(descr "")) 6 | ) 7 | -------------------------------------------------------------------------------- /img/stamp_xl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solderparty/rp2350_stamp_xl_hw/accf40cda26e730370860a890736015bae096956/img/stamp_xl.jpg -------------------------------------------------------------------------------- /rp2350_stamp_xl.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "apply_defaults_to_fp_fields": false, 7 | "apply_defaults_to_fp_shapes": false, 8 | "apply_defaults_to_fp_text": false, 9 | "board_outline_line_width": 0.1, 10 | "copper_line_width": 0.2, 11 | "copper_text_italic": false, 12 | "copper_text_size_h": 1.5, 13 | "copper_text_size_v": 1.5, 14 | "copper_text_thickness": 0.3, 15 | "copper_text_upright": false, 16 | "courtyard_line_width": 0.05, 17 | "dimension_precision": 4, 18 | "dimension_units": 3, 19 | "dimensions": { 20 | "arrow_length": 1270000, 21 | "extension_offset": 500000, 22 | "keep_text_aligned": true, 23 | "suppress_zeroes": false, 24 | "text_position": 0, 25 | "units_format": 1 26 | }, 27 | "fab_line_width": 0.1, 28 | "fab_text_italic": false, 29 | "fab_text_size_h": 1.0, 30 | "fab_text_size_v": 1.0, 31 | "fab_text_thickness": 0.15, 32 | "fab_text_upright": false, 33 | "other_line_width": 0.15, 34 | "other_text_italic": false, 35 | "other_text_size_h": 1.0, 36 | "other_text_size_v": 1.0, 37 | "other_text_thickness": 0.15, 38 | "other_text_upright": false, 39 | "pads": { 40 | "drill": 0.0, 41 | "height": 1.55, 42 | "width": 0.6 43 | }, 44 | "silk_line_width": 0.15, 45 | "silk_text_italic": false, 46 | "silk_text_size_h": 1.0, 47 | "silk_text_size_v": 1.0, 48 | "silk_text_thickness": 0.15, 49 | "silk_text_upright": false, 50 | "zones": { 51 | "min_clearance": 0.15 52 | } 53 | }, 54 | "diff_pair_dimensions": [ 55 | { 56 | "gap": 0.0, 57 | "via_gap": 0.0, 58 | "width": 0.0 59 | } 60 | ], 61 | "drc_exclusions": [], 62 | "meta": { 63 | "version": 2 64 | }, 65 | "rule_severities": { 66 | "annular_width": "error", 67 | "clearance": "error", 68 | "connection_width": "warning", 69 | "copper_edge_clearance": "ignore", 70 | "copper_sliver": "warning", 71 | "courtyards_overlap": "ignore", 72 | "diff_pair_gap_out_of_range": "error", 73 | "diff_pair_uncoupled_length_too_long": "error", 74 | "drill_out_of_range": "error", 75 | "duplicate_footprints": "warning", 76 | "extra_footprint": "warning", 77 | "footprint": "error", 78 | "footprint_filters_mismatch": "ignore", 79 | "footprint_symbol_mismatch": "warning", 80 | "footprint_type_mismatch": "ignore", 81 | "hole_clearance": "error", 82 | "hole_near_hole": "error", 83 | "hole_to_hole": "warning", 84 | "holes_co_located": "warning", 85 | "invalid_outline": "error", 86 | "isolated_copper": "warning", 87 | "item_on_disabled_layer": "error", 88 | "items_not_allowed": "error", 89 | "length_out_of_range": "error", 90 | "lib_footprint_issues": "ignore", 91 | "lib_footprint_mismatch": "ignore", 92 | "malformed_courtyard": "error", 93 | "microvia_drill_out_of_range": "error", 94 | "missing_courtyard": "ignore", 95 | "missing_footprint": "warning", 96 | "net_conflict": "warning", 97 | "npth_inside_courtyard": "ignore", 98 | "padstack": "warning", 99 | "pth_inside_courtyard": "ignore", 100 | "shorting_items": "error", 101 | "silk_edge_clearance": "warning", 102 | "silk_over_copper": "ignore", 103 | "silk_overlap": "ignore", 104 | "skew_out_of_range": "error", 105 | "solder_mask_bridge": "ignore", 106 | "starved_thermal": "error", 107 | "text_height": "warning", 108 | "text_thickness": "warning", 109 | "through_hole_pad_without_hole": "error", 110 | "too_many_vias": "error", 111 | "track_dangling": "warning", 112 | "track_width": "error", 113 | "tracks_crossing": "error", 114 | "unconnected_items": "error", 115 | "unresolved_variable": "error", 116 | "via_dangling": "warning", 117 | "zones_intersect": "error" 118 | }, 119 | "rules": { 120 | "max_error": 0.005, 121 | "min_clearance": 0.0, 122 | "min_connection": 0.0, 123 | "min_copper_edge_clearance": 0.2, 124 | "min_hole_clearance": 0.1, 125 | "min_hole_to_hole": 0.4, 126 | "min_microvia_diameter": 0.2, 127 | "min_microvia_drill": 0.1, 128 | "min_resolved_spokes": 1, 129 | "min_silk_clearance": 0.0, 130 | "min_text_height": 0.8, 131 | "min_text_thickness": 0.1, 132 | "min_through_hole_diameter": 0.25, 133 | "min_track_width": 0.125, 134 | "min_via_annular_width": 0.05, 135 | "min_via_diameter": 0.4, 136 | "solder_mask_clearance": 0.0, 137 | "solder_mask_min_width": 0.0, 138 | "solder_mask_to_copper_clearance": 0.0, 139 | "use_height_for_length_calcs": true 140 | }, 141 | "teardrop_options": [ 142 | { 143 | "td_onpadsmd": true, 144 | "td_onroundshapesonly": false, 145 | "td_ontrackend": false, 146 | "td_onviapad": true 147 | } 148 | ], 149 | "teardrop_parameters": [ 150 | { 151 | "td_allow_use_two_tracks": true, 152 | "td_curve_segcount": 0, 153 | "td_height_ratio": 1.0, 154 | "td_length_ratio": 0.5, 155 | "td_maxheight": 2.0, 156 | "td_maxlen": 1.0, 157 | "td_on_pad_in_zone": false, 158 | "td_target_name": "td_round_shape", 159 | "td_width_to_size_filter_ratio": 0.9 160 | }, 161 | { 162 | "td_allow_use_two_tracks": true, 163 | "td_curve_segcount": 0, 164 | "td_height_ratio": 1.0, 165 | "td_length_ratio": 0.5, 166 | "td_maxheight": 2.0, 167 | "td_maxlen": 1.0, 168 | "td_on_pad_in_zone": false, 169 | "td_target_name": "td_rect_shape", 170 | "td_width_to_size_filter_ratio": 0.9 171 | }, 172 | { 173 | "td_allow_use_two_tracks": true, 174 | "td_curve_segcount": 0, 175 | "td_height_ratio": 1.0, 176 | "td_length_ratio": 0.5, 177 | "td_maxheight": 2.0, 178 | "td_maxlen": 1.0, 179 | "td_on_pad_in_zone": false, 180 | "td_target_name": "td_track_end", 181 | "td_width_to_size_filter_ratio": 0.9 182 | } 183 | ], 184 | "track_widths": [ 185 | 0.0, 186 | 0.15, 187 | 0.2, 188 | 0.25, 189 | 0.3, 190 | 0.4 191 | ], 192 | "tuning_pattern_settings": { 193 | "diff_pair_defaults": { 194 | "corner_radius_percentage": 100, 195 | "corner_style": 1, 196 | "max_amplitude": 1.0, 197 | "min_amplitude": 0.1, 198 | "single_sided": false, 199 | "spacing": 0.6 200 | }, 201 | "diff_pair_skew_defaults": { 202 | "corner_radius_percentage": 100, 203 | "corner_style": 1, 204 | "max_amplitude": 1.0, 205 | "min_amplitude": 0.1, 206 | "single_sided": false, 207 | "spacing": 0.6 208 | }, 209 | "single_track_defaults": { 210 | "corner_radius_percentage": 100, 211 | "corner_style": 1, 212 | "max_amplitude": 1.0, 213 | "min_amplitude": 0.1, 214 | "single_sided": false, 215 | "spacing": 0.6 216 | } 217 | }, 218 | "via_dimensions": [ 219 | { 220 | "diameter": 0.0, 221 | "drill": 0.0 222 | }, 223 | { 224 | "diameter": 0.5, 225 | "drill": 0.25 226 | }, 227 | { 228 | "diameter": 0.6, 229 | "drill": 0.3 230 | }, 231 | { 232 | "diameter": 0.8, 233 | "drill": 0.4 234 | } 235 | ], 236 | "zones_allow_external_fillets": true 237 | }, 238 | "ipc2581": { 239 | "dist": "", 240 | "distpn": "", 241 | "internal_id": "", 242 | "mfg": "", 243 | "mpn": "" 244 | }, 245 | "layer_pairs": [], 246 | "layer_presets": [], 247 | "viewports": [] 248 | }, 249 | "boards": [], 250 | "cvpcb": { 251 | "equivalence_files": [] 252 | }, 253 | "erc": { 254 | "erc_exclusions": [], 255 | "meta": { 256 | "version": 0 257 | }, 258 | "pin_map": [ 259 | [ 260 | 0, 261 | 0, 262 | 0, 263 | 0, 264 | 0, 265 | 0, 266 | 1, 267 | 0, 268 | 0, 269 | 0, 270 | 0, 271 | 2 272 | ], 273 | [ 274 | 0, 275 | 2, 276 | 0, 277 | 1, 278 | 0, 279 | 0, 280 | 1, 281 | 0, 282 | 2, 283 | 2, 284 | 2, 285 | 2 286 | ], 287 | [ 288 | 0, 289 | 0, 290 | 0, 291 | 0, 292 | 0, 293 | 0, 294 | 1, 295 | 0, 296 | 1, 297 | 0, 298 | 1, 299 | 2 300 | ], 301 | [ 302 | 0, 303 | 1, 304 | 0, 305 | 0, 306 | 0, 307 | 0, 308 | 1, 309 | 1, 310 | 2, 311 | 1, 312 | 1, 313 | 2 314 | ], 315 | [ 316 | 0, 317 | 0, 318 | 0, 319 | 0, 320 | 0, 321 | 0, 322 | 1, 323 | 0, 324 | 0, 325 | 0, 326 | 0, 327 | 2 328 | ], 329 | [ 330 | 0, 331 | 0, 332 | 0, 333 | 0, 334 | 0, 335 | 0, 336 | 0, 337 | 0, 338 | 0, 339 | 0, 340 | 0, 341 | 2 342 | ], 343 | [ 344 | 1, 345 | 1, 346 | 1, 347 | 1, 348 | 1, 349 | 0, 350 | 1, 351 | 1, 352 | 1, 353 | 1, 354 | 1, 355 | 2 356 | ], 357 | [ 358 | 0, 359 | 0, 360 | 0, 361 | 1, 362 | 0, 363 | 0, 364 | 1, 365 | 0, 366 | 0, 367 | 0, 368 | 0, 369 | 2 370 | ], 371 | [ 372 | 0, 373 | 2, 374 | 1, 375 | 2, 376 | 0, 377 | 0, 378 | 1, 379 | 0, 380 | 2, 381 | 2, 382 | 2, 383 | 2 384 | ], 385 | [ 386 | 0, 387 | 2, 388 | 0, 389 | 1, 390 | 0, 391 | 0, 392 | 1, 393 | 0, 394 | 2, 395 | 0, 396 | 0, 397 | 2 398 | ], 399 | [ 400 | 0, 401 | 2, 402 | 1, 403 | 1, 404 | 0, 405 | 0, 406 | 1, 407 | 0, 408 | 2, 409 | 0, 410 | 0, 411 | 2 412 | ], 413 | [ 414 | 2, 415 | 2, 416 | 2, 417 | 2, 418 | 2, 419 | 2, 420 | 2, 421 | 2, 422 | 2, 423 | 2, 424 | 2, 425 | 2 426 | ] 427 | ], 428 | "rule_severities": { 429 | "bus_definition_conflict": "error", 430 | "bus_entry_needed": "error", 431 | "bus_to_bus_conflict": "error", 432 | "bus_to_net_conflict": "error", 433 | "conflicting_netclasses": "error", 434 | "different_unit_footprint": "error", 435 | "different_unit_net": "error", 436 | "duplicate_reference": "error", 437 | "duplicate_sheet_names": "error", 438 | "endpoint_off_grid": "warning", 439 | "extra_units": "error", 440 | "footprint_filter": "ignore", 441 | "footprint_link_issues": "warning", 442 | "four_way_junction": "ignore", 443 | "global_label_dangling": "warning", 444 | "hier_label_mismatch": "error", 445 | "label_dangling": "error", 446 | "label_multiple_wires": "warning", 447 | "lib_symbol_issues": "ignore", 448 | "lib_symbol_mismatch": "warning", 449 | "missing_bidi_pin": "warning", 450 | "missing_input_pin": "warning", 451 | "missing_power_pin": "error", 452 | "missing_unit": "warning", 453 | "multiple_net_names": "warning", 454 | "net_not_bus_member": "warning", 455 | "no_connect_connected": "warning", 456 | "no_connect_dangling": "warning", 457 | "pin_not_connected": "error", 458 | "pin_not_driven": "error", 459 | "pin_to_pin": "warning", 460 | "power_pin_not_driven": "error", 461 | "same_local_global_label": "warning", 462 | "similar_label_and_power": "warning", 463 | "similar_labels": "warning", 464 | "similar_power": "warning", 465 | "simulation_model_issue": "ignore", 466 | "single_global_label": "ignore", 467 | "unannotated": "error", 468 | "unconnected_wire_endpoint": "warning", 469 | "unit_value_mismatch": "error", 470 | "unresolved_variable": "error", 471 | "wire_dangling": "error" 472 | } 473 | }, 474 | "libraries": { 475 | "pinned_footprint_libs": [ 476 | "RP2xxx_stamp", 477 | "Package_DFN_QFN_Extra" 478 | ], 479 | "pinned_symbol_libs": [ 480 | "MCU_RaspberryPi" 481 | ] 482 | }, 483 | "meta": { 484 | "filename": "rp2350_stamp_xl.kicad_pro", 485 | "version": 1 486 | }, 487 | "net_settings": { 488 | "classes": [ 489 | { 490 | "bus_width": 12, 491 | "clearance": 0.15, 492 | "diff_pair_gap": 0.2, 493 | "diff_pair_via_gap": 0.25, 494 | "diff_pair_width": 0.15, 495 | "line_style": 0, 496 | "microvia_diameter": 0.3, 497 | "microvia_drill": 0.1, 498 | "name": "Default", 499 | "pcb_color": "rgba(0, 0, 0, 0.000)", 500 | "schematic_color": "rgba(0, 0, 0, 0.000)", 501 | "track_width": 0.15, 502 | "via_diameter": 0.6, 503 | "via_drill": 0.3, 504 | "wire_width": 6 505 | } 506 | ], 507 | "meta": { 508 | "version": 3 509 | }, 510 | "net_colors": null, 511 | "netclass_assignments": null, 512 | "netclass_patterns": [] 513 | }, 514 | "pcbnew": { 515 | "last_paths": { 516 | "gencad": "", 517 | "idf": "", 518 | "netlist": "", 519 | "plot": "gerb", 520 | "pos_files": "gerb", 521 | "specctra_dsn": "", 522 | "step": "stamp_xl_long.step", 523 | "svg": "svg", 524 | "vrml": "" 525 | }, 526 | "page_layout_descr_file": "" 527 | }, 528 | "schematic": { 529 | "annotate_start_num": 0, 530 | "bom_export_filename": "gerb\\rp2350_stamp_xl.csv", 531 | "bom_fmt_presets": [], 532 | "bom_fmt_settings": { 533 | "field_delimiter": ",", 534 | "keep_line_breaks": false, 535 | "keep_tabs": false, 536 | "name": "CSV", 537 | "ref_delimiter": ",", 538 | "ref_range_delimiter": "", 539 | "string_delimiter": "\"" 540 | }, 541 | "bom_presets": [], 542 | "bom_settings": { 543 | "exclude_dnp": false, 544 | "fields_ordered": [ 545 | { 546 | "group_by": false, 547 | "label": "Reference", 548 | "name": "Reference", 549 | "show": true 550 | }, 551 | { 552 | "group_by": true, 553 | "label": "Value", 554 | "name": "Value", 555 | "show": true 556 | }, 557 | { 558 | "group_by": false, 559 | "label": "Datasheet", 560 | "name": "Datasheet", 561 | "show": false 562 | }, 563 | { 564 | "group_by": false, 565 | "label": "Footprint", 566 | "name": "Footprint", 567 | "show": true 568 | }, 569 | { 570 | "group_by": false, 571 | "label": "Qty", 572 | "name": "${QUANTITY}", 573 | "show": true 574 | }, 575 | { 576 | "group_by": false, 577 | "label": "DNP", 578 | "name": "${DNP}", 579 | "show": false 580 | }, 581 | { 582 | "group_by": false, 583 | "label": "#", 584 | "name": "${ITEM_NUMBER}", 585 | "show": false 586 | }, 587 | { 588 | "group_by": false, 589 | "label": "Digikey", 590 | "name": "Digikey", 591 | "show": false 592 | }, 593 | { 594 | "group_by": false, 595 | "label": "LCSC", 596 | "name": "LCSC", 597 | "show": true 598 | }, 599 | { 600 | "group_by": false, 601 | "label": "Description", 602 | "name": "Description", 603 | "show": true 604 | } 605 | ], 606 | "filter_string": "", 607 | "group_symbols": true, 608 | "include_excluded_from_bom": false, 609 | "name": "", 610 | "sort_asc": true, 611 | "sort_field": "Value" 612 | }, 613 | "connection_grid_size": 50.0, 614 | "drawing": { 615 | "dashed_lines_dash_length_ratio": 12.0, 616 | "dashed_lines_gap_length_ratio": 3.0, 617 | "default_line_thickness": 6.0, 618 | "default_text_size": 50.0, 619 | "field_names": [], 620 | "intersheets_ref_own_page": false, 621 | "intersheets_ref_prefix": "", 622 | "intersheets_ref_short": false, 623 | "intersheets_ref_show": false, 624 | "intersheets_ref_suffix": "", 625 | "junction_size_choice": 3, 626 | "label_size_ratio": 0.375, 627 | "operating_point_overlay_i_precision": 3, 628 | "operating_point_overlay_i_range": "~A", 629 | "operating_point_overlay_v_precision": 3, 630 | "operating_point_overlay_v_range": "~V", 631 | "overbar_offset_ratio": 1.23, 632 | "pin_symbol_size": 25.0, 633 | "text_offset_ratio": 0.15 634 | }, 635 | "legacy_lib_dir": "", 636 | "legacy_lib_list": [], 637 | "meta": { 638 | "version": 1 639 | }, 640 | "net_format_name": "", 641 | "page_layout_descr_file": "${KIPRJMOD}/library/sheet_reduced.kicad_wks", 642 | "plot_directory": "", 643 | "space_save_all_events": true, 644 | "spice_current_sheet_as_root": false, 645 | "spice_external_command": "spice \"%I\"", 646 | "spice_model_current_sheet_as_root": true, 647 | "spice_save_all_currents": false, 648 | "spice_save_all_dissipations": false, 649 | "spice_save_all_voltages": false, 650 | "subpart_first_id": 65, 651 | "subpart_id_separator": 0 652 | }, 653 | "sheets": [ 654 | [ 655 | "019f2816-6bfb-4531-95b3-45f73cf5fc4b", 656 | "Root" 657 | ] 658 | ], 659 | "text_variables": {} 660 | } 661 | -------------------------------------------------------------------------------- /schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solderparty/rp2350_stamp_xl_hw/accf40cda26e730370860a890736015bae096956/schematics.pdf -------------------------------------------------------------------------------- /sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (version 7) 3 | (lib (name "MCU_RaspberryPi")(type "KiCad")(uri "${KIPRJMOD}/library/MCU_RaspberryPi.kicad_sym")(options "")(descr "")) 4 | ) 5 | --------------------------------------------------------------------------------