Skip to content
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

Added scripts for general commands #7

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions camera_descriptions/beta/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,15 @@ devices:
globals:
lvds_clk: 250e6 # MHz
pixel_bits: 12 # number of bits per pixel

scripts:
check_axiom_service_status:
description:
script: |
result = "false"
local f=io.open("/tmp/axiom.started","r")
if f~=nil then
io.close(f)
result = "true"
end
return result