- 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
22 lines
523 B
C++
22 lines
523 B
C++
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright 2020 - 2025 Pionix GmbH and Contributors to EVerest
|
|
|
|
#include "InfyPower_BEG1K075G.hpp"
|
|
|
|
namespace module {
|
|
|
|
void InfyPower_BEG1K075G::init() {
|
|
// open DCDC CAN device
|
|
if (!acdc.open_device(config.can_device.c_str())) {
|
|
EVLOG_AND_THROW(EVEXCEPTION(Everest::EverestConfigError, "Could not open CAN interface ", config.can_device));
|
|
}
|
|
|
|
invoke_init(*p_main);
|
|
}
|
|
|
|
void InfyPower_BEG1K075G::ready() {
|
|
invoke_ready(*p_main);
|
|
}
|
|
|
|
} // namespace module
|