Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter
- CitrineOS core extracted (CSMS OCPP 2.0.1) - OpenOCPP extracted (firmware OCPP 1.6J/2.0.1) - ShapeShifter library installed (pip install -e) - ShapeShifter specification extracted - EVerest extracted TODO updated with progress
This commit is contained in:
45
tools/EVerest-main/lib/everest/conversions/ocpp/BUILD.bazel
Normal file
45
tools/EVerest-main/lib/everest/conversions/ocpp/BUILD.bazel
Normal file
@@ -0,0 +1,45 @@
|
||||
load("@rules_cc//cc:defs.bzl", "cc_library")
|
||||
|
||||
cc_library(
|
||||
name = "ocpp_evse_security",
|
||||
srcs = [
|
||||
"src/evse_security_ocpp.cpp"
|
||||
],
|
||||
hdrs = [
|
||||
"include/everest/conversions/ocpp/evse_security_ocpp.hpp",
|
||||
],
|
||||
copts = [
|
||||
"-std=c++17",
|
||||
"-Wimplicit-fallthrough",
|
||||
"-Wno-error=switch-enum", # boost.date_time 1.87.0 has incomplete switch statements
|
||||
],
|
||||
includes = ["include"],
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//lib/everest/framework:framework",
|
||||
"//lib/everest/ocpp:libocpp",
|
||||
"//interfaces:interfaces_lib",
|
||||
],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "ocpp_conversions",
|
||||
srcs = [
|
||||
"src/ocpp_conversions.cpp",
|
||||
],
|
||||
hdrs = [
|
||||
"include/everest/conversions/ocpp/ocpp_conversions.hpp"
|
||||
],
|
||||
copts = [
|
||||
"-std=c++17",
|
||||
"-Wimplicit-fallthrough",
|
||||
"-Wno-error=switch-enum", # boost.date_time 1.87.0 has incomplete switch statements
|
||||
],
|
||||
includes = ["include"],
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//lib/everest/framework:framework",
|
||||
"//lib/everest/ocpp:libocpp",
|
||||
"//types:types_lib",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user