blob: 72fb0af1a7936a48dd7d98a63a9f7797935ed582 [file] [log] [blame]
Ji Soo Shin9035e7c2022-01-05 11:58:21 +01001/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <libprotocan/Checksum.h>
18
19namespace android::hardware::automotive::protocan {
20
21Checksum::Checksum(Signal signal, formula f) : mSignal(signal), mFormula(f) {}
22
23void Checksum::update(can::V1_0::CanMessage& msg) const {
24 mSignal.set(msg, 0);
25 mSignal.set(msg, mFormula(msg) % (mSignal.maxValue + 1));
26}
27
28} // namespace android::hardware::automotive::protocan