1 // Copyright (C) 2014-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) 2 // This Source Code Form is subject to the terms of the Mozilla Public 3 // License, v. 2.0. If a copy of the MPL was not distributed with this 4 // file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 6 #pragma once 7 8 namespace cpu_load_test { 9 10 static constexpr vsomeip::service_t service_id(0x1111); 11 static constexpr vsomeip::instance_t instance_id(0x1); 12 static constexpr vsomeip::method_t method_id(0x1111); 13 static constexpr vsomeip::byte_t load_test_data(0xDD); 14 static constexpr vsomeip::length_t default_payload_length(40); 15 static constexpr vsomeip::method_t method_id_shutdown(0x7777); 16 static constexpr vsomeip::method_t method_id_cpu_measure_start(0x8888); 17 static constexpr vsomeip::method_t method_id_cpu_measure_stop(0x9999); 18 } 19