Skip to content

Commit

Permalink
Add ListInformJobs service definition
Browse files Browse the repository at this point in the history
Part of INFORM Job CRUD.
  • Loading branch information
gavanderhoorn committed Jul 23, 2024
1 parent 0a6f497 commit 6d1fb23
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ set(msg_files

set(srv_files
srv/GetActiveAlarmInfo.srv
srv/ListInformJobs.srv
srv/QueueTrajPoint.srv
srv/ReadMRegister.srv
srv/ReadSingleIO.srv
Expand Down
26 changes: 26 additions & 0 deletions srv/ListInformJobs.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# SPDX-FileCopyrightText: 2024, Yaskawa America, Inc.
# SPDX-FileCopyrightText: 2024, Delft University of Technology
#
# SPDX-License-Identifier: Apache-2.0

# empty request

---

# Result of the service invocation. Values other than one (1) signal failure.
#
# NOTE: future versions of this service may use a different set of result
# codes. Always make sure to compare against defined named constants instead
# of integers directly.
uint32 result_code

# string representation of the value in 'result_code', for humans
string message

# The list of jobs present on the controller.
#
# NOTE:
# - these are job names, not filenames, and thus will not include the file
# extension (JBI)
# - character encodings other than ASCII are currently not fully supported
string[] names

0 comments on commit 6d1fb23

Please sign in to comment.