diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-13 22:23:06 +0000 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-13 23:31:56 +0000 |
commit | e28b4da3cf2042695e0c0a99b9448eb3a548e0f5 (patch) | |
tree | 5dc7ebbcf4520dbb2fd70baa4b95c32da9028c3f /can-signals.cpp | |
parent | 1c322797c8a4000b54a0666d88025de3c2df7f0b (diff) |
Added bitfield-c library
Change-Id: Ied7e4819b2568205f0790751d5b753e321275990
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'can-signals.cpp')
-rw-r--r-- | can-signals.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/can-signals.cpp b/can-signals.cpp new file mode 100644 index 00000000..13ff30b1 --- /dev/null +++ b/can-signals.cpp @@ -0,0 +1,40 @@ +/* + * Copyright (C) 2015, 2016 "IoT.bzh" + * Author "Romain Forlot" <romain.forlot@iot.bzh> + * + * 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 + * + * http://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. + */ + +#include <string> +#include "can-signals.h" + +bool match(const std::string &first, const std::string &second) +{ + +} + +CanSignal* getSignals(std::string name) +{ + int n_signals, i; + CanSignal ret_signals[]; + + n_signals = size(SIGNALS); + + for(i=0; i<=n_signals; i++) + { + if(SIGNALS[i].generic_name == name) + return &SIGNALS[i]; + i++; + } + return 0; +} |