Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Fix layout in RPPicoBase ref design
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-iteng committed Oct 18, 2024
1 parent 19d0d4b commit cc29b3b
Showing 1 changed file with 34 additions and 6 deletions.
40 changes: 34 additions & 6 deletions src/faebryk/library/RaspberryPiPicoBase_ReferenceDesign.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,11 @@ def pcb_layout(self):
),
LVL(
mod_type=F.Resistor,
layout=LayoutAbsolute(
Point((0, 2.5, 0, L.NONE)),
layout=LayoutExtrude(
base=Point((-7, -1.5, 0, L.NONE)),
vector=(0, 2.25, 180),
reverse_order=True,
dynamic_rotation=True,
),
),
],
Expand Down Expand Up @@ -339,10 +342,35 @@ def pcb_layout(self):
),
),
LVL(
mod_type=F.Resistor,
layout=LayoutExtrude(
base=Point((0.75, -6, 0, L.NONE)),
vector=(1.25, 0, 270),
mod_type=self.PICO_ADC_VoltageReference,
layout=LayoutAbsolute(
Point((0.75, -6, 0, L.NONE)),
),
children_layout=LayoutTypeHierarchy(
layouts=[
LVL(
mod_type=F.FilterElectricalRC,
layout=LayoutAbsolute(
Point((0, 0, 0, L.NONE)),
),
children_layout=LayoutTypeHierarchy(
layouts=[
LVL(
mod_type=F.Capacitor,
layout=LayoutAbsolute(
Point((0, 0, 0, L.NONE)),
),
),
LVL(
mod_type=F.Resistor,
layout=LayoutAbsolute(
Point((1.25, 0, 270, L.NONE)),
),
),
],
),
),
],
),
),
]
Expand Down

0 comments on commit cc29b3b

Please sign in to comment.