File tree Expand file tree Collapse file tree 3 files changed +62
-0
lines changed Expand file tree Collapse file tree 3 files changed +62
-0
lines changed Original file line number Diff line number Diff line change 2121 - name : limelight3
2222 script : ./install_limelight3.sh
2323 base_image : https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2024-07-04/2024-07-04-raspios-bookworm-arm64-lite.img.xz
24+ - name : limelight3g
25+ script : ./install_limelight3g.sh
26+ base_image : https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2024-07-04/2024-07-04-raspios-bookworm-arm64-lite.img.xz
2427 - name : raspi
2528 script : ./install_pi.sh
2629 base_image : https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2024-07-04/2024-07-04-raspios-bookworm-arm64-lite.img.xz
Original file line number Diff line number Diff line change 1+ #! /bin/bash -v
2+
3+ # Verbose and exit on errors
4+ set -ex
5+
6+ # Run the pi install script
7+ chmod +x ./install_pi.sh
8+ ./install_pi.sh
9+
10+ # Install our new config.txt with OV9281 overlay
11+ install -m 644 limelight3g/config.txt /boot/
12+
13+ # Add the one extra file for the LL3
14+ wget https://datasheets.raspberrypi.org/cmio/dt-blob-cam1.bin -O /boot/dt-blob.bin
Original file line number Diff line number Diff line change 1+ # Automatically load overlays for detected DSI displays/cameras
2+ display_auto_detect=1
3+ camera_auto_detect=1
4+
5+ # Automatically load initramfs files, if found
6+ auto_initramfs=1
7+
8+ # Enable DRM VC4 V3D driver
9+ dtoverlay=vc4-kms-v3d
10+ max_framebuffers=2
11+
12+ # Run in 64-bit mode
13+ arm_64bit=1
14+
15+ # Disable compensation for displays with overscan
16+ disable_overscan=1
17+
18+ [cm4]
19+ # Enable host mode on the 2711 built-in XHCI USB controller.
20+ # This line should be removed if the legacy DWC2 controller is required
21+ # (e.g. for USB device mode) or if USB support is not required.
22+ otg_mode=1
23+
24+ [pi4]
25+ # Run as fast as firmware / board allows
26+ arm_boost=1
27+
28+ [all]
29+ ##############################################################
30+ ### PHOTONVISION CAM CONFIG
31+ ### Comment/Uncomment to change which camera is supported
32+ ### Picam V1, V2 or HQ: uncomment (remove leading # ) from camera_auto_detect=1,
33+ ### and comment out all following lines
34+ ### IMX290/327/OV9281/Any other cameras that require additional overlays:
35+ ### Comment out (add a # ) to camera_auto_detect=1, and uncomment the line for
36+ ### the sensor you're trying to user
37+
38+ # camera_auto_detect=1
39+
40+ # dtoverlay=imx290,clock-frequency=74250000
41+ # dtoverlay=imx290,clock-frequency=37125000
42+ # dtoverlay=imx378
43+ dtoverlay=ov9281
44+
45+ ##############################################################
You can’t perform that action at this time.
0 commit comments