-
Notifications
You must be signed in to change notification settings - Fork 21
Add limelight 4 support #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
db58e06
Add limelight-4 supportg
spacey-sooty 8575371
juniormk change
spacey-sooty d1f4407
fixes
spacey-sooty 19bc308
fix
spacey-sooty 1b94540
trigger actions rerun
spacey-sooty 3155702
Update install_limelight4.sh
spacey-sooty f045b8d
Update README.md
spacey-sooty 9aeaca7
Fix
spacey-sooty 4d3c445
fix 2 electric boogaloo
spacey-sooty 2893fe1
Remove uneeded file
spacey-sooty f50e938
fix
spacey-sooty File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| trigger ci | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| #!/bin/bash -v | ||
|
|
||
| # Verbose and exit on errors | ||
| set -ex | ||
|
|
||
|
|
||
spacey-sooty marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # Run the pi install script | ||
| chmod +x ./install_pi.sh | ||
| ./install_pi.sh | ||
|
|
||
| # Install our new config.txt with OV9281 overlay | ||
| install -m 644 limelight4/config.txt /boot/ | ||
|
|
||
| # Add the one extra file for the LL3 | ||
spacey-sooty marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| wget https://datasheets.raspberrypi.org/cmio/dt-blob-cam1.bin -O /boot/dt-blob.bin | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| # Automatically load overlays for detected DSI displays/cameras | ||
| display_auto_detect=1 | ||
| camera_auto_detect=1 | ||
spacey-sooty marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| # Automatically load initramfs files, if found | ||
| auto_initramfs=1 | ||
|
|
||
| # Enable DRM VC4 V3D driver | ||
| dtoverlay=vc4-kms-v3d | ||
| max_framebuffers=2 | ||
|
|
||
| # Run in 64-bit mode | ||
| arm_64bit=1 | ||
|
|
||
| # Disable compensation for displays with overscan | ||
| disable_overscan=1 | ||
|
|
||
| [cm5] | ||
| # Enable host mode on the 2711 built-in XHCI USB controller. | ||
| # This line should be removed if the legacy DWC2 controller is required | ||
| # (e.g. for USB device mode) or if USB support is not required. | ||
| otg_mode=1 | ||
|
|
||
| [pi5] | ||
| # Run as fast as firmware / board allows | ||
| arm_boost=1 | ||
|
|
||
| [all] | ||
| ############################################################## | ||
| ### PHOTONVISION CAM CONFIG | ||
| ### Comment/Uncomment to change which camera is supported | ||
| ### Picam V1, V2 or HQ: uncomment (remove leading # ) from camera_auto_detect=1, | ||
| ### and comment out all following lines | ||
| ### IMX290/327/OV9281/Any other cameras that require additional overlays: | ||
| ### Comment out (add a # ) to camera_auto_detect=1, and uncomment the line for | ||
| ### the sensor you're trying to user | ||
|
|
||
| # camera_auto_detect=1 | ||
|
|
||
| # dtoverlay=imx290,clock-frequency=74250000 | ||
| # dtoverlay=imx290,clock-frequency=37125000 | ||
| # dtoverlay=imx378 | ||
| dtoverlay=ov9281,cam0 | ||
|
|
||
| ############################################################## | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.