imrishabh18/STM32F746G-DISCO

This code defines the hardware layout of a USB audio vu-meter circuit, including key components such as voltage regulators, microcontroller (STM32F303CCT6), audio codec (PCM2902), USB-Ethernet isolator, power regulation, reset switches, and associated passive components, with their physical footprints, pin configurations, and routing for PCB design.

Version
1.0.2
License
unset
Stars
0

src/utils/nets.ts

export const nets = {
	gnd: "net.GND",
	vbus: "net.VBUS_5V",
	v3v3: "net.V3_3",
	usbDp: "net.USB_DP",
	usbDm: "net.USB_DM",
	audioMclk: "net.AUDIO_MCLK",
	audioBclk: "net.AUDIO_BCLK",
	audioLrck: "net.AUDIO_LRCK",
	audioData: "net.AUDIO_DATA",
	oledScl: "net.OLED_SCL",
	oledSda: "net.OLED_SDA",
	ledData: "net.LED_DATA",
	ledSrclk: "net.LED_SRCLK",
	ledLatch: "net.LED_LATCH",
	ledOe: "net.LED_OE",
	boot0: "net.BOOT0",
	reset: "net.NRST",
} as const;