mirror of https://codeberg.org/topola/topola.git
install: explain how to use the CLI and how to view its results
This commit is contained in:
parent
358c1fefdf
commit
44d9d3dd83
26
INSTALL.md
26
INSTALL.md
|
|
@ -31,9 +31,33 @@ application:
|
||||||
|
|
||||||
The application will now be invokable from your terminal as `topola`.
|
The application will now be invokable from your terminal as `topola`.
|
||||||
|
|
||||||
|
#### Autorouting example
|
||||||
|
|
||||||
|
The following example will autoroute a KiCad project of a simple THT
|
||||||
|
diode bridge rectifier.
|
||||||
|
|
||||||
|
```
|
||||||
|
cd tests/single_layer/data/tht_diode_bridge_rectifier/
|
||||||
|
topola tht_diode_bridge_rectifier.dsn tht_diode_bridge_rectifier.ses autoroute_all.cmd
|
||||||
|
```
|
||||||
|
|
||||||
|
##### Viewing the results
|
||||||
|
|
||||||
|
You can view the results of the autorouting in KiCad if you have it
|
||||||
|
installed. First, open the layout in the KiCad PCB Editor:
|
||||||
|
|
||||||
|
```
|
||||||
|
pcbnew tht_diode_bridge_rectifier.kicad_pcb
|
||||||
|
```
|
||||||
|
|
||||||
|
Then choose *File > Import > Specctra Session...*** from the menu bar.
|
||||||
|
In the newly opened file dialog choose the file named
|
||||||
|
*tht__diode_bridge_rectifier.ses*. This will load the autorouted traces.
|
||||||
|
|
||||||
### Egui GUI application
|
### Egui GUI application
|
||||||
|
|
||||||
The following command will build and install Topola's Egui application
|
The following command will build and install Topola's Egui graphical
|
||||||
|
user interface application:
|
||||||
|
|
||||||
cargo install --locked --path . --features egui --bin egui
|
cargo install --locked --path . --features egui --bin egui
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue