Skip to content

Commit

Permalink
camera_server: typos
Browse files Browse the repository at this point in the history
Signed-off-by: Julian Oes <julian@oes.ch>
  • Loading branch information
julianoes committed Oct 31, 2023
1 parent 4cf4e32 commit 1de456f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions protos/camera_server/camera_server.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ service CameraServerService {

// Subscribe to image capture requests. Each request received should respond to using RespondTakePhoto.
rpc SubscribeTakePhoto(SubscribeTakePhotoRequest) returns(stream TakePhotoResponse) { option (mavsdk.options.async_type) = ASYNC; }

// Respond to an image capture request from SubscribeTakePhoto.
rpc RespondTakePhoto(RespondTakePhotoRequest) returns(RespondTakePhotoResponse) { option (mavsdk.options.async_type) = SYNC; }

// Subscribe to start video requests. Each request received should response to using StartVideoResponse
// Subscribe to start video requests. Each request received should respond using a StartVideoResponse
rpc SubscribeStartVideo(SubscribeStartVideoRequest) returns(stream StartVideoResponse) { option (mavsdk.options.async_type) = ASYNC; }

// Subscribe to stop video requests. Each request received should response to using StopVideoResponse
// Subscribe to stop video requests. Each request received should respond using StopVideoResponse
rpc SubscribeStopVideo(SubscribeStopVideoRequest) returns(stream StopVideoResponse) { option (mavsdk.options.async_type) = ASYNC; }
}

Expand Down

0 comments on commit 1de456f

Please sign in to comment.