- 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
91 lines
2.8 KiB
C++
91 lines
2.8 KiB
C++
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright Pionix GmbH and Contributors to EVerest
|
|
#ifndef TIDA010939_HPP
|
|
#define TIDA010939_HPP
|
|
|
|
//
|
|
// AUTO GENERATED - MARKED REGIONS WILL BE KEPT
|
|
// template version 2
|
|
//
|
|
|
|
#include "ld-ev.hpp"
|
|
|
|
// headers for provided interface implementations
|
|
#include <generated/interfaces/ac_rcd/Implementation.hpp>
|
|
#include <generated/interfaces/connector_lock/Implementation.hpp>
|
|
#include <generated/interfaces/evse_board_support/Implementation.hpp>
|
|
|
|
// ev@4bf81b14-a215-475c-a1d3-0a484ae48918:v1
|
|
#include "tida_010939_comms/evSerial.h"
|
|
// ev@4bf81b14-a215-475c-a1d3-0a484ae48918:v1
|
|
|
|
namespace module {
|
|
|
|
struct Conf {
|
|
std::string serial_port;
|
|
int baud_rate;
|
|
std::string reset_gpio_chip;
|
|
int reset_gpio;
|
|
int max_current_A_import;
|
|
int min_current_A_import;
|
|
int min_phase_count_import;
|
|
int max_phase_count_import;
|
|
int min_current_A_export;
|
|
int max_current_A_export;
|
|
int min_phase_count_export;
|
|
int max_phase_count_export;
|
|
bool has_socket;
|
|
};
|
|
|
|
class TIDA010939 : public Everest::ModuleBase {
|
|
public:
|
|
TIDA010939() = delete;
|
|
TIDA010939(const ModuleInfo& info, std::unique_ptr<evse_board_supportImplBase> p_board_support,
|
|
std::unique_ptr<ac_rcdImplBase> p_rcd, std::unique_ptr<connector_lockImplBase> p_connector_lock,
|
|
Conf& config) :
|
|
ModuleBase(info),
|
|
p_board_support(std::move(p_board_support)),
|
|
p_rcd(std::move(p_rcd)),
|
|
p_connector_lock(std::move(p_connector_lock)),
|
|
config(config){};
|
|
|
|
const std::unique_ptr<evse_board_supportImplBase> p_board_support;
|
|
const std::unique_ptr<ac_rcdImplBase> p_rcd;
|
|
const std::unique_ptr<connector_lockImplBase> p_connector_lock;
|
|
const Conf& config;
|
|
|
|
// ev@1fce4c5e-0ab8-41bb-90f7-14277703d2ac:v1
|
|
void publish_external_telemetry_livedata(const std::string& topic, const Everest::TelemetryMap& data);
|
|
evSerial serial;
|
|
void clear_errors_on_unplug();
|
|
// ev@1fce4c5e-0ab8-41bb-90f7-14277703d2ac:v1
|
|
|
|
protected:
|
|
// ev@4714b2ab-a24f-4b95-ab81-36439e1478de:v1
|
|
// insert your protected definitions here
|
|
// ev@4714b2ab-a24f-4b95-ab81-36439e1478de:v1
|
|
|
|
private:
|
|
friend class LdEverest;
|
|
void init();
|
|
void ready();
|
|
|
|
// ev@211cfdbe-f69a-4cd6-a4ec-f8aaa3d1b6c8:v1
|
|
// insert your private definitions here
|
|
void error_handling(ErrorFlags e);
|
|
ErrorFlags last_error_flags;
|
|
|
|
std::atomic_bool error_MREC2GroundFailure{false};
|
|
std::atomic_bool error_MREC1ConnectorLockFailure{false};
|
|
// ev@211cfdbe-f69a-4cd6-a4ec-f8aaa3d1b6c8:v1
|
|
};
|
|
|
|
// ev@087e516b-124c-48df-94fb-109508c7cda9:v1
|
|
Everest::json keep_alive_lo_to_json(const KeepAliveLo& k);
|
|
std::string error_type_to_string(ErrorFlags s);
|
|
// ev@087e516b-124c-48df-94fb-109508c7cda9:v1
|
|
|
|
} // namespace module
|
|
|
|
#endif // TIDA010939_HPP
|