blob: 377981df15cfc36b6a234a7bce36cf5bfde14969 [file] [log] [blame]
// Copyright 2022 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
#pragma once
#include "proto/demo.rpc.pb.h"
namespace rpc_demo {
class DemoService : public pw_rpc::nanopb::DemoService::Service<DemoService> {
public:
::pw::Status GetVersion(const ::rpc_demo_Empty& request,
::rpc_demo_GetVersionResponse& response);
::pw::Status GetSensorList(const ::rpc_demo_Empty& request,
::rpc_demo_GetSensorListResponse& response);
::pw::Status UpdateSensorFrequency(
const ::rpc_demo_UpdateSensorFrequencyRequest& request,
::rpc_demo_UpdateSensorFrequencyResponse& response);
::pw::Status GetSensorSamples(
const ::rpc_demo_GetSensorSamplesRequest& request,
::rpc_demo_GetSensorSamplesResponse& response);
};
} // namespace rpc_demo