Re: [kicad] Location for current Symbol Library Definition

2022-10-06 Thread Graham Keeth
Link works, but you have to look at the website rather than the source for the website. https://dev-docs.kicad.org/en/file-formats/sexpr-intro/index.html#_symbols Graham On Thu, Oct 6, 2022 at 12:16 PM Tony Radice wrote: > Ladies and Gentlemen - > Could someone please provide the link to

Re: [kicad] reference - value - value2 - value3 from schematic to board

2023-07-24 Thread Graham Keeth
Note that in 7.0 you can access symbol field values in the corresponding footprint's footprint text with ${MY_SCHEMATIC_FIELDNAME}. So in your case you could add footprint text that contains ${value2} and ${value3}, and those variables will be replaced with the component value and package name. You

Re: [kicad] Run KiCad from Build Directory on MacOS14

2025-01-30 Thread Graham Keeth
Christian, KICAD_RUN_FROM_BUILD_DIR is an environment variable that needs to be set when running KiCad, not something you should set in your cmake config. i.e. when running from the build dir from a shell, you can run it with prompt> KICAD_RUN_FROM_BUILD_DIR=1 ./kicad/kicad & Alternatively, pers