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:
Eric F
2026-06-08 00:38:27 -04:00
parent 468cfeaa50
commit d398a6ced2
7326 changed files with 1177561 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
include(Catch)
add_executable(can_charger)
target_sources(can_charger
PRIVATE
can_charger.cpp
)
target_link_libraries(can_charger
PRIVATE
ieee2030::ieee2030
)

View File

@@ -0,0 +1,34 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright 2022 - 2026 Pionix GmbH and Contributors to EVerest
#include <ieee2030/charger/io/can_broker_charger.hpp>
#include <chrono>
#include <thread>
#include <iostream>
using namespace ieee2030::charger::io;
int main() {
std::cout << "Start CanBroker Charger\n";
std::this_thread::sleep_for(std::chrono::seconds(2));
auto broker = CanBrokerCharger("vcan0");
std::cout << "Wait 2 seconds!\n";
std::this_thread::sleep_for(std::chrono::seconds(2));
broker.enable_tx_can();
std::cout << "Send can message for 10 seconds!\n";
std::this_thread::sleep_for(std::chrono::seconds(10));
broker.disable_tx_can();
std::cout << "Stop CanBroker Charger\n";
return 0;
}