Skip to content

Commit

Permalink
refactor: rename pcb/elec/src/{components => lib}
Browse files Browse the repository at this point in the history
  • Loading branch information
sethfischer committed May 23, 2024
1 parent 2755732 commit 90a014a
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 19 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from "generics/interfaces.ato" import Power, SPI
from "jst-gh/elec/src/jst-gh.ato" import JSTGH4Pin

from "components/capacitors.ato" import PowerDecouplingCap100nf
from "components/leds.ato" import LEDIndicatorUser
from "components/mechanical-switches.ato" import CkJs102011jcqn
from "components/oscillators.ato" import ABM8_20MHzOscillator
from "components/resistors.ato" import Resistor1608
from "lib/capacitors.ato" import PowerDecouplingCap100nf
from "lib/leds.ato" import LEDIndicatorUser
from "lib/mechanical-switches.ato" import CkJs102011jcqn
from "lib/oscillators.ato" import ABM8_20MHzOscillator
from "lib/resistors.ato" import Resistor1608
from "MCP2517FDT.ato" import MCP2517FDT
from "MCP2562FD.ato" import MCP2562FD

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ from "generics/capacitors.ato" import Capacitor
from "generics/interfaces.ato" import GPIO, I2C, Power, SPI, UART
from "generics/oscillators.ato" import Oscillator

from "components/capacitors.ato" import PowerDecouplingCap100nf
from "components/headers.ato" import PinHeaderUartTHT
from "components/leds.ato" import LEDIndicatorUser
from "components/oscillators.ato" import ABM8_14MHz7456Oscillator
from "lib/capacitors.ato" import PowerDecouplingCap100nf
from "lib/headers.ato" import PinHeaderUartTHT
from "lib/leds.ato" import LEDIndicatorUser
from "lib/oscillators.ato" import ABM8_14MHz7456Oscillator


module SpiToUart:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
20 changes: 10 additions & 10 deletions pcb/elec/src/rpi-hat.ato
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ from "generics/resistors.ato" import I2CPullup

from "rpi-header/elec/src/rpi.ato" import ConnectorRaspberryPi

from "components/capacitors.ato" import PowerDecouplingCap100nf
from "components/connectors.ato" import JstB2bPhKS
from "components/eeproms.ato" import CAT24C32WI_GT3
from "components/headers.ato" import PinHeader1x2PinDipStraightTHT, PinHeaderUartTHT
from "components/leds.ato" import LEDIndicatorAmber, LEDIndicatorPowerRail
from "components/microchip/can-controller-trx.ato" import CanControllerTrx
from "components/mosfets.ato" import LowSideSwitch60V115mA
from "components/nxp/SC16IS750.ato" import SpiToUart
from "components/resistors.ato" import Resistor1608
from "components/test-points.ato" import RcwcteTestPoint
from "lib/capacitors.ato" import PowerDecouplingCap100nf
from "lib/connectors.ato" import JstB2bPhKS
from "lib/eeproms.ato" import CAT24C32WI_GT3
from "lib/headers.ato" import PinHeader1x2PinDipStraightTHT, PinHeaderUartTHT
from "lib/leds.ato" import LEDIndicatorAmber, LEDIndicatorPowerRail
from "lib/microchip/can-controller-trx.ato" import CanControllerTrx
from "lib/mosfets.ato" import LowSideSwitch60V115mA
from "lib/nxp/SC16IS750.ato" import SpiToUart
from "lib/resistors.ato" import Resistor1608
from "lib/test-points.ato" import RcwcteTestPoint


module RpiHatIdEeprom:
Expand Down

0 comments on commit 90a014a

Please sign in to comment.