Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@

_site/
site/
.venv/
.python-version
.vscode/
.cache/
.cache/
16 changes: 16 additions & 0 deletions README.first
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

Usage on Linux:

- make sure you have pngquant installed
- either install `uv` and run `uv run mkdocs serve` (for instance)
- or create a virtual environment, activate it, install the
packages in `requirements.txt` into it and then just run `mkdocs`

Usage on Windows 11:
- Python 3.14 is not supported by Pillow, which is one of the packages needed for mkdocs
- Use Python 3.12 instead
- You need to install pngquant. You may download a Windows binary from [pngquant.org](pngquant.org)
and place it in a directory in your `PATH`.
- We have not found a way to make this work with Smart App Control (SAC). You may need to turn SAC off.

Make sure to run `mkdocs build` to test; this is what the CI will run.
8 changes: 8 additions & 0 deletions docs/programming/vision/coprocessor-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ network:
netplan apply
```

- Add the IP address to the login prompt. To that end, change `/etc/issue` to read
```text
Ubuntu 24.04.3 LTS \n \l
IP: \4
```
This should allow us to learn which IP address the box acquired without needing to
attach a keyboard to it.

- Reboot the machine with `shutdown -r now`.

- The machine should boot up without delay and connect to the network.
Expand Down