astrimid - I can't seem to change the netlabel ...
I can't seem to change the netlabel schX/schY anymore. Have a compilation error: source failed to create component error:Could not create netlabel. Invalid props for netlabel (unnamed): connection (net and connection cannot be provided together) Details: Props: { "net": "GND", "c
i didn't understand it fully and interpreted it as a spec issue
A
astrimid
basically, I'm reimplementing these GND symbols on the reference. Curently, `GND` label rendering is random and doesn't seem to be influenced by `schMaxTraceDistance`
yea i'm adding testing so that nobody breaks what i broke in the future
Seve
it makes sense actually, you want a netlabel for a connection, not a "net" per-se
Seve
after we have the testing it will be unlikely to break in the future
A
astrimid
Maybe I need both connection labels (DC source, GND, physical data socket) and line labels. Look at the reference picture for SDC_IN for example. I guess it's a network that has the same name as the global source port.
I guess I can do this visually, but would this have any distinct semantic meaning?
```
<chip
name="SDC_IN"
symbol={
<symbol>
/* draw a circle and a line pointing down */
<port name="out" schX={0} schY={-1} direction="down" />
</symbol>
}
/>
```
I haven't looked into components yet, but I figure the bold text represents the component boundary or the port while the red text represents the net label which could be either a data line, a power line or a ground
Want to add to the conversation?
Reply in Discord so your notes stay connected to the source.