├── .ci └── build-kit │ ├── docker │ └── Dockerfile │ └── scripts │ ├── build_docs.sh │ ├── compile.sh │ ├── install.sh │ ├── run_coverage.sh │ └── run_unit_tests.sh ├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.yaml ├── pull_request_template.md └── workflows │ └── build_and_test.yaml ├── .gitignore ├── 3rd_party └── websocketpp_utils │ ├── base64.hpp │ └── uri.hpp ├── CMakeLists.txt ├── LICENSE ├── README.md ├── THIRD_PARTY.md ├── config ├── CollectMigrationFiles.cmake ├── logging.ini ├── v16 │ ├── CMakeLists.txt │ ├── config-docker-tls.json │ ├── config-docker.json │ ├── config-full.json │ ├── config.json │ ├── core_migrations │ │ ├── 1_up-initial.sql │ │ ├── 2_down-offline-transaction.sql │ │ ├── 2_up-offline-transaction.sql │ │ ├── 3_down-persist-normal-messages.sql │ │ ├── 3_up-persist-normal-messages.sql │ │ ├── 4_down-drop-ocsp-request.sql │ │ └── 4_up-drop-ocsp-request.sql │ ├── profile_schemas │ │ ├── Config.json │ │ ├── Core.json │ │ ├── CostAndPrice.json │ │ ├── Custom.json │ │ ├── FirmwareManagement.json │ │ ├── Internal.json │ │ ├── LocalAuthListManagement.json │ │ ├── PnC.json │ │ ├── Reservation.json │ │ ├── Security.json │ │ └── SmartCharging.json │ └── user_config │ │ └── .gitignore └── v2 │ ├── CMakeLists.txt │ ├── component_config │ ├── custom │ │ ├── Connector_1_1.json │ │ ├── Connector_2_1.json │ │ ├── EVSE_1.json │ │ └── EVSE_2.json │ └── standardized │ │ ├── AlignedDataCtrlr.json │ │ ├── AuthCacheCtrlr.json │ │ ├── AuthCtrlr.json │ │ ├── ChargingStation.json │ │ ├── ChargingStatusIndicator.json │ │ ├── ClockCtrlr.json │ │ ├── CustomizationCtrlr.json │ │ ├── DeviceDataCtrlr.json │ │ ├── DisplayMessageCtrlr.json │ │ ├── ISO15118Ctrlr.json │ │ ├── InternalCtrlr.json │ │ ├── LocalAuthListCtrlr.json │ │ ├── MonitoringCtrlr.json │ │ ├── OCPPCommCtrlr.json │ │ ├── ReservationCtrlr.json │ │ ├── SampledDataCtrlr.json │ │ ├── SecurityCtrlr.json │ │ ├── SmartChargingCtrlr.json │ │ ├── TariffCostCtrlr.json │ │ └── TxCtrlr.json │ ├── core_migrations │ ├── 1_up-initial.sql │ ├── 2_down-auth_cache_management.sql │ ├── 2_up-auth_cache_management.sql │ ├── 3_down-persist-normal-messages.sql │ ├── 3_up-persist-normal-messages.sql │ ├── 4_down-transactions_db.sql │ ├── 4_up-transactions_db.sql │ ├── 5_down-charging_profiles_db.sql │ ├── 5_up-charging_profiles_db.sql │ ├── 6_down-charging_profiles_source_tx_id.sql │ └── 6_up-charging_profiles_source_tx_id.sql │ └── device_model_migrations │ ├── 1_up-initial.sql │ ├── 2_down-variable_source.sql │ ├── 2_up-variable_source.sql │ ├── 3_down-variable_required.sql │ └── 3_up-variable_required.sql ├── dependencies.yaml ├── doc ├── common │ ├── build-with-fetchcontent │ │ ├── CMakeLists.txt │ │ └── README.md │ ├── california_pricing_requirements.md │ ├── database_exception_handling.md │ ├── database_migrations.md │ ├── getting_started.md │ └── smart_charging_profiles.md ├── message_dispatching.md ├── networkconnectivity │ └── README.md ├── v16 │ ├── getting_started.md │ └── state_chart_1_6.drawio └── v2 │ ├── getting_started.md │ ├── ocpp_201_device_model_initialization.md │ ├── ocpp_201_monitors.md │ ├── ocpp_201_monitors_periodic_flowchart.puml │ ├── ocpp_201_monitors_trigger_flowchart.puml │ ├── ocpp_201_smart_charging_in_depth.md │ ├── ocpp_2x_status.md │ └── resumeInterruptedTransactions │ ├── resumeInterruptedTransactions.png │ └── resumeInterruptedTransactions.puml ├── include └── ocpp │ ├── common │ ├── aligned_timer.hpp │ ├── call_types.hpp │ ├── charging_station_base.hpp │ ├── cistring.hpp │ ├── constants.hpp │ ├── custom_iterators.hpp │ ├── database │ │ └── database_handler_common.hpp │ ├── evse_security.hpp │ ├── evse_security_impl.hpp │ ├── message_dispatcher.hpp │ ├── message_queue.hpp │ ├── ocpp_logging.hpp │ ├── safe_queue.hpp │ ├── schemas.hpp │ ├── string.hpp │ ├── support_older_cpp_versions.hpp │ ├── types.hpp │ ├── utils.hpp │ └── websocket │ │ ├── websocket.hpp │ │ ├── websocket_base.hpp │ │ ├── websocket_libwebsockets.hpp │ │ └── websocket_uri.hpp │ ├── v16 │ ├── charge_point.hpp │ ├── charge_point_configuration.hpp │ ├── charge_point_impl.hpp │ ├── charge_point_state_machine.hpp │ ├── connector.hpp │ ├── database_handler.hpp │ ├── message_dispatcher.hpp │ ├── messages │ │ ├── Authorize.hpp │ │ ├── BootNotification.hpp │ │ ├── CancelReservation.hpp │ │ ├── CertificateSigned.hpp │ │ ├── ChangeAvailability.hpp │ │ ├── ChangeConfiguration.hpp │ │ ├── ClearCache.hpp │ │ ├── ClearChargingProfile.hpp │ │ ├── DataTransfer.hpp │ │ ├── DeleteCertificate.hpp │ │ ├── DiagnosticsStatusNotification.hpp │ │ ├── ExtendedTriggerMessage.hpp │ │ ├── FirmwareStatusNotification.hpp │ │ ├── GetCompositeSchedule.hpp │ │ ├── GetConfiguration.hpp │ │ ├── GetDiagnostics.hpp │ │ ├── GetInstalledCertificateIds.hpp │ │ ├── GetLocalListVersion.hpp │ │ ├── GetLog.hpp │ │ ├── Heartbeat.hpp │ │ ├── InstallCertificate.hpp │ │ ├── LogStatusNotification.hpp │ │ ├── MeterValues.hpp │ │ ├── RemoteStartTransaction.hpp │ │ ├── RemoteStopTransaction.hpp │ │ ├── ReserveNow.hpp │ │ ├── Reset.hpp │ │ ├── SecurityEventNotification.hpp │ │ ├── SendLocalList.hpp │ │ ├── SetChargingProfile.hpp │ │ ├── SignCertificate.hpp │ │ ├── SignedFirmwareStatusNotification.hpp │ │ ├── SignedUpdateFirmware.hpp │ │ ├── StartTransaction.hpp │ │ ├── StatusNotification.hpp │ │ ├── StopTransaction.hpp │ │ ├── TriggerMessage.hpp │ │ ├── UnlockConnector.hpp │ │ └── UpdateFirmware.hpp │ ├── ocpp_enums.hpp │ ├── ocpp_types.hpp │ ├── profile.hpp │ ├── smart_charging.hpp │ ├── transaction.hpp │ ├── types.hpp │ └── utils.hpp │ ├── v2 │ ├── average_meter_values.hpp │ ├── charge_point.hpp │ ├── charge_point_callbacks.hpp │ ├── comparators.hpp │ ├── component_state_manager.hpp │ ├── connectivity_manager.hpp │ ├── connector.hpp │ ├── constants.hpp │ ├── ctrlr_component_variables.hpp │ ├── database_handler.hpp │ ├── device_model.hpp │ ├── device_model_storage_interface.hpp │ ├── device_model_storage_sqlite.hpp │ ├── enums.hpp │ ├── evse.hpp │ ├── evse_manager.hpp │ ├── functional_blocks │ │ ├── authorization.hpp │ │ ├── availability.hpp │ │ ├── data_transfer.hpp │ │ ├── diagnostics.hpp │ │ ├── display_message.hpp │ │ ├── firmware_update.hpp │ │ ├── functional_block_context.hpp │ │ ├── meter_values.hpp │ │ ├── provisioning.hpp │ │ ├── remote_transaction_control.hpp │ │ ├── reservation.hpp │ │ ├── security.hpp │ │ ├── smart_charging.hpp │ │ ├── tariff_and_cost.hpp │ │ └── transaction.hpp │ ├── init_device_model_db.hpp │ ├── message_dispatcher.hpp │ ├── message_handler.hpp │ ├── messages │ │ ├── Authorize.hpp │ │ ├── BootNotification.hpp │ │ ├── CancelReservation.hpp │ │ ├── CertificateSigned.hpp │ │ ├── ChangeAvailability.hpp │ │ ├── ClearCache.hpp │ │ ├── ClearChargingProfile.hpp │ │ ├── ClearDisplayMessage.hpp │ │ ├── ClearVariableMonitoring.hpp │ │ ├── ClearedChargingLimit.hpp │ │ ├── CostUpdated.hpp │ │ ├── CustomerInformation.hpp │ │ ├── DataTransfer.hpp │ │ ├── DeleteCertificate.hpp │ │ ├── FirmwareStatusNotification.hpp │ │ ├── Get15118EVCertificate.hpp │ │ ├── GetBaseReport.hpp │ │ ├── GetCertificateStatus.hpp │ │ ├── GetChargingProfiles.hpp │ │ ├── GetCompositeSchedule.hpp │ │ ├── GetDisplayMessages.hpp │ │ ├── GetInstalledCertificateIds.hpp │ │ ├── GetLocalListVersion.hpp │ │ ├── GetLog.hpp │ │ ├── GetMonitoringReport.hpp │ │ ├── GetReport.hpp │ │ ├── GetTransactionStatus.hpp │ │ ├── GetVariables.hpp │ │ ├── Heartbeat.hpp │ │ ├── InstallCertificate.hpp │ │ ├── LogStatusNotification.hpp │ │ ├── MeterValues.hpp │ │ ├── NotifyChargingLimit.hpp │ │ ├── NotifyCustomerInformation.hpp │ │ ├── NotifyDisplayMessages.hpp │ │ ├── NotifyEVChargingNeeds.hpp │ │ ├── NotifyEVChargingSchedule.hpp │ │ ├── NotifyEvent.hpp │ │ ├── NotifyMonitoringReport.hpp │ │ ├── NotifyReport.hpp │ │ ├── PublishFirmware.hpp │ │ ├── PublishFirmwareStatusNotification.hpp │ │ ├── ReportChargingProfiles.hpp │ │ ├── RequestStartTransaction.hpp │ │ ├── RequestStopTransaction.hpp │ │ ├── ReservationStatusUpdate.hpp │ │ ├── ReserveNow.hpp │ │ ├── Reset.hpp │ │ ├── SecurityEventNotification.hpp │ │ ├── SendLocalList.hpp │ │ ├── SetChargingProfile.hpp │ │ ├── SetDisplayMessage.hpp │ │ ├── SetMonitoringBase.hpp │ │ ├── SetMonitoringLevel.hpp │ │ ├── SetNetworkProfile.hpp │ │ ├── SetVariableMonitoring.hpp │ │ ├── SetVariables.hpp │ │ ├── SignCertificate.hpp │ │ ├── StatusNotification.hpp │ │ ├── TransactionEvent.hpp │ │ ├── TriggerMessage.hpp │ │ ├── UnlockConnector.hpp │ │ ├── UnpublishFirmware.hpp │ │ └── UpdateFirmware.hpp │ ├── monitoring_updater.hpp │ ├── notify_report_requests_splitter.hpp │ ├── ocpp_enums.hpp │ ├── ocpp_types.hpp │ ├── ocsp_updater.hpp │ ├── profile.hpp │ ├── transaction.hpp │ ├── types.hpp │ └── utils.hpp │ └── v21 │ ├── functional_blocks │ └── bidirectional.hpp │ └── messages │ ├── AFRRSignal.hpp │ ├── AdjustPeriodicEventStream.hpp │ ├── BatterySwap.hpp │ ├── ChangeTransactionTariff.hpp │ ├── ClearDERControl.hpp │ ├── ClearTariffs.hpp │ ├── ClosePeriodicEventStream.hpp │ ├── GetCertificateChainStatus.hpp │ ├── GetDERControl.hpp │ ├── GetPeriodicEventStream.hpp │ ├── GetTariffs.hpp │ ├── NotifyAllowedEnergyTransfer.hpp │ ├── NotifyDERAlarm.hpp │ ├── NotifyDERStartStop.hpp │ ├── NotifyPeriodicEventStream.hpp │ ├── NotifyPriorityCharging.hpp │ ├── NotifySettlement.hpp │ ├── NotifyWebPaymentStarted.hpp │ ├── OpenPeriodicEventStream.hpp │ ├── PullDynamicScheduleUpdate.hpp │ ├── ReportDERControl.hpp │ ├── RequestBatterySwap.hpp │ ├── SetDERControl.hpp │ ├── SetDefaultTariff.hpp │ ├── UpdateDynamicSchedule.hpp │ ├── UsePriorityCharging.hpp │ └── VatNumberValidation.hpp ├── lib ├── CMakeLists.txt └── ocpp │ ├── common │ ├── call_types.cpp │ ├── charging_station_base.cpp │ ├── database │ │ └── database_handler_common.cpp │ ├── evse_security.cpp │ ├── evse_security_impl.cpp │ ├── ocpp_logging.cpp │ ├── schemas.cpp │ ├── types.cpp │ ├── utils.cpp │ └── websocket │ │ ├── CMakeLists.txt │ │ ├── websocket.cpp │ │ ├── websocket_base.cpp │ │ ├── websocket_libwebsockets.cpp │ │ └── websocket_uri.cpp │ ├── v16 │ ├── charge_point.cpp │ ├── charge_point_configuration.cpp │ ├── charge_point_impl.cpp │ ├── charge_point_state_machine.cpp │ ├── database_handler.cpp │ ├── message_dispatcher.cpp │ ├── message_queue.cpp │ ├── messages │ │ ├── Authorize.cpp │ │ ├── BootNotification.cpp │ │ ├── CMakeLists.txt │ │ ├── CancelReservation.cpp │ │ ├── CertificateSigned.cpp │ │ ├── ChangeAvailability.cpp │ │ ├── ChangeConfiguration.cpp │ │ ├── ClearCache.cpp │ │ ├── ClearChargingProfile.cpp │ │ ├── DataTransfer.cpp │ │ ├── DeleteCertificate.cpp │ │ ├── DiagnosticsStatusNotification.cpp │ │ ├── ExtendedTriggerMessage.cpp │ │ ├── FirmwareStatusNotification.cpp │ │ ├── GetCompositeSchedule.cpp │ │ ├── GetConfiguration.cpp │ │ ├── GetDiagnostics.cpp │ │ ├── GetInstalledCertificateIds.cpp │ │ ├── GetLocalListVersion.cpp │ │ ├── GetLog.cpp │ │ ├── Heartbeat.cpp │ │ ├── InstallCertificate.cpp │ │ ├── LogStatusNotification.cpp │ │ ├── MeterValues.cpp │ │ ├── RemoteStartTransaction.cpp │ │ ├── RemoteStopTransaction.cpp │ │ ├── ReserveNow.cpp │ │ ├── Reset.cpp │ │ ├── SecurityEventNotification.cpp │ │ ├── SendLocalList.cpp │ │ ├── SetChargingProfile.cpp │ │ ├── SignCertificate.cpp │ │ ├── SignedFirmwareStatusNotification.cpp │ │ ├── SignedUpdateFirmware.cpp │ │ ├── StartTransaction.cpp │ │ ├── StatusNotification.cpp │ │ ├── StopTransaction.cpp │ │ ├── TriggerMessage.cpp │ │ ├── UnlockConnector.cpp │ │ └── UpdateFirmware.cpp │ ├── ocpp_enums.cpp │ ├── ocpp_types.cpp │ ├── profile.cpp │ ├── smart_charging.cpp │ ├── transaction.cpp │ ├── types.cpp │ └── utils.cpp │ ├── v2 │ ├── average_meter_values.cpp │ ├── charge_point.cpp │ ├── charge_point_callbacks.cpp │ ├── component_state_manager.cpp │ ├── connectivity_manager.cpp │ ├── connector.cpp │ ├── ctrlr_component_variables.cpp │ ├── database_handler.cpp │ ├── device_model.cpp │ ├── device_model_storage_sqlite.cpp │ ├── enums.cpp │ ├── evse.cpp │ ├── evse_manager.cpp │ ├── functional_blocks │ │ ├── authorization.cpp │ │ ├── availability.cpp │ │ ├── data_transfer.cpp │ │ ├── diagnostics.cpp │ │ ├── display_message.cpp │ │ ├── firmware_update.cpp │ │ ├── meter_values.cpp │ │ ├── provisioning.cpp │ │ ├── remote_transaction_control.cpp │ │ ├── reservation.cpp │ │ ├── security.cpp │ │ ├── smart_charging.cpp │ │ ├── tariff_and_cost.cpp │ │ └── transaction.cpp │ ├── init_device_model_db.cpp │ ├── message_dispatcher.cpp │ ├── message_queue.cpp │ ├── messages │ │ ├── Authorize.cpp │ │ ├── BootNotification.cpp │ │ ├── CMakeLists.txt │ │ ├── CancelReservation.cpp │ │ ├── CertificateSigned.cpp │ │ ├── ChangeAvailability.cpp │ │ ├── ClearCache.cpp │ │ ├── ClearChargingProfile.cpp │ │ ├── ClearDisplayMessage.cpp │ │ ├── ClearVariableMonitoring.cpp │ │ ├── ClearedChargingLimit.cpp │ │ ├── CostUpdated.cpp │ │ ├── CustomerInformation.cpp │ │ ├── DataTransfer.cpp │ │ ├── DeleteCertificate.cpp │ │ ├── FirmwareStatusNotification.cpp │ │ ├── Get15118EVCertificate.cpp │ │ ├── GetBaseReport.cpp │ │ ├── GetCertificateStatus.cpp │ │ ├── GetChargingProfiles.cpp │ │ ├── GetCompositeSchedule.cpp │ │ ├── GetDisplayMessages.cpp │ │ ├── GetInstalledCertificateIds.cpp │ │ ├── GetLocalListVersion.cpp │ │ ├── GetLog.cpp │ │ ├── GetMonitoringReport.cpp │ │ ├── GetReport.cpp │ │ ├── GetTransactionStatus.cpp │ │ ├── GetVariables.cpp │ │ ├── Heartbeat.cpp │ │ ├── InstallCertificate.cpp │ │ ├── LogStatusNotification.cpp │ │ ├── MeterValues.cpp │ │ ├── NotifyChargingLimit.cpp │ │ ├── NotifyCustomerInformation.cpp │ │ ├── NotifyDisplayMessages.cpp │ │ ├── NotifyEVChargingNeeds.cpp │ │ ├── NotifyEVChargingSchedule.cpp │ │ ├── NotifyEvent.cpp │ │ ├── NotifyMonitoringReport.cpp │ │ ├── NotifyReport.cpp │ │ ├── PublishFirmware.cpp │ │ ├── PublishFirmwareStatusNotification.cpp │ │ ├── ReportChargingProfiles.cpp │ │ ├── RequestStartTransaction.cpp │ │ ├── RequestStopTransaction.cpp │ │ ├── ReservationStatusUpdate.cpp │ │ ├── ReserveNow.cpp │ │ ├── Reset.cpp │ │ ├── SecurityEventNotification.cpp │ │ ├── SendLocalList.cpp │ │ ├── SetChargingProfile.cpp │ │ ├── SetDisplayMessage.cpp │ │ ├── SetMonitoringBase.cpp │ │ ├── SetMonitoringLevel.cpp │ │ ├── SetNetworkProfile.cpp │ │ ├── SetVariableMonitoring.cpp │ │ ├── SetVariables.cpp │ │ ├── SignCertificate.cpp │ │ ├── StatusNotification.cpp │ │ ├── TransactionEvent.cpp │ │ ├── TriggerMessage.cpp │ │ ├── UnlockConnector.cpp │ │ ├── UnpublishFirmware.cpp │ │ └── UpdateFirmware.cpp │ ├── monitoring_updater.cpp │ ├── notify_report_requests_splitter.cpp │ ├── ocpp_enums.cpp │ ├── ocpp_types.cpp │ ├── ocsp_updater.cpp │ ├── profile.cpp │ ├── transaction.cpp │ ├── types.cpp │ └── utils.cpp │ └── v21 │ ├── functional_blocks │ └── bidirectional.cpp │ └── messages │ ├── AFRRSignal.cpp │ ├── AdjustPeriodicEventStream.cpp │ ├── BatterySwap.cpp │ ├── CMakeLists.txt │ ├── ChangeTransactionTariff.cpp │ ├── ClearDERControl.cpp │ ├── ClearTariffs.cpp │ ├── ClosePeriodicEventStream.cpp │ ├── GetCertificateChainStatus.cpp │ ├── GetDERControl.cpp │ ├── GetPeriodicEventStream.cpp │ ├── GetTariffs.cpp │ ├── NotifyAllowedEnergyTransfer.cpp │ ├── NotifyDERAlarm.cpp │ ├── NotifyDERStartStop.cpp │ ├── NotifyPeriodicEventStream.cpp │ ├── NotifyPriorityCharging.cpp │ ├── NotifySettlement.cpp │ ├── NotifyWebPaymentStarted.cpp │ ├── OpenPeriodicEventStream.cpp │ ├── PullDynamicScheduleUpdate.cpp │ ├── ReportDERControl.cpp │ ├── RequestBatterySwap.cpp │ ├── SetDERControl.cpp │ ├── SetDefaultTariff.cpp │ ├── UpdateDynamicSchedule.cpp │ ├── UsePriorityCharging.cpp │ └── VatNumberValidation.cpp ├── run-docker-tls.sh ├── run-docker.sh ├── src ├── CMakeLists.txt ├── charge_point.cpp └── code_generator │ ├── README.md │ └── common │ ├── generate_cpp.py │ ├── generate_everest_types.py │ ├── templates │ ├── everest_type.yaml.jinja │ ├── message.cpp.jinja │ ├── message.hpp.jinja │ ├── messages.cmakelists.txt.jinja │ ├── ocpp_enums.cpp.jinja │ ├── ocpp_enums.hpp.jinja │ ├── ocpp_types.cpp.jinja │ └── ocpp_types.hpp.jinja │ └── utils.py └── tests ├── CMakeLists.txt ├── config ├── v16 │ └── resources │ │ ├── config.json │ │ └── user_config.json └── v2 │ ├── pytest.ini │ ├── resources │ └── component_config │ │ ├── custom │ │ ├── Connector_1_1.json │ │ ├── Connector_2_1.json │ │ ├── EVSE_1.json │ │ └── EVSE_2.json │ │ └── standardized │ │ └── UnitTestCtrlr.json │ ├── resources_changed │ └── component_config │ │ ├── custom │ │ ├── Connector_1_1.json │ │ ├── Connector_2_2.json │ │ ├── EVSE_1.json │ │ ├── EVSE_2.json │ │ └── EVSE_3.json │ │ └── standardized │ │ └── UnitTestCtrlr.json │ └── resources_wrong │ ├── component_config_required_no_value │ ├── custom │ │ ├── Connector_1_1.json │ │ └── EVSE_1.json │ └── standardized │ │ └── UnitTestCtrlr.json │ └── component_config_wrong_value_type │ ├── custom │ ├── Connector_1_1.json │ └── EVSE_1.json │ └── standardized │ └── UnitTestCtrlr.json ├── lib └── ocpp │ ├── common │ ├── CMakeLists.txt │ ├── database_testing_utils.hpp │ ├── evse_security_mock.hpp │ ├── message_queue_test.cpp │ ├── smart_charging_matchers.hpp │ ├── test_database_migration_files.cpp │ ├── test_database_migration_files.hpp │ ├── test_message_queue.cpp │ ├── test_websocket_uri.cpp │ └── utils_tests.cpp │ ├── v16 │ ├── CMakeLists.txt │ ├── database_handler_mock.hpp │ ├── database_stub.hpp │ ├── database_tests.cpp │ ├── json │ │ ├── Absolute_301.json │ │ ├── ChargingStationMaxProfile_24_Ampere.json │ │ ├── ChargingStationMaxProfile_401.json │ │ ├── Recurring_Daily_301.json │ │ ├── Recurring_Daily_302_phase_limit.json │ │ ├── Relative_302_phase_limit.json │ │ ├── Relative_303.json │ │ ├── TXDefaultProfile_25_Watt.json │ │ ├── TxDefaultProfile_01.json │ │ ├── TxDefaultProfile_100.json │ │ ├── TxDefaultProfile_2kw_17-20.json │ │ ├── TxDefaultProfile_401.json │ │ ├── TxDefaultProfile_402.json │ │ ├── TxDefaultProfile_Absolute_Daily_2kw_1080.json │ │ ├── TxDefaultProfile_no_chargingRateUnit.json │ │ ├── TxDefault_relative.json │ │ ├── TxProfile_02.json │ │ ├── TxProfile_03_Absolute.json │ │ └── TxProfile_grid.json │ ├── profile_testsA.cpp │ ├── profile_testsB.cpp │ ├── profile_testsC.cpp │ ├── profile_tests_common.cpp │ ├── profile_tests_common.hpp │ ├── test_charge_point_state_machine.cpp │ ├── test_composite_schedule.cpp │ ├── test_config_validation.cpp │ ├── test_configuration.cpp │ ├── test_database_migration_files.cpp │ ├── test_message_queue.cpp │ ├── test_smart_charging_handler.cpp │ └── utils_tests.cpp │ ├── v2 │ ├── CMakeLists.txt │ ├── comparators.cpp │ ├── comparators.hpp │ ├── device_model_test_helper.cpp │ ├── device_model_test_helper.hpp │ ├── functional_blocks │ │ ├── CMakeLists.txt │ │ ├── test_authorization.cpp │ │ ├── test_availability.cpp │ │ ├── test_data_transfer.cpp │ │ ├── test_reservation.cpp │ │ ├── test_security.cpp │ │ └── test_smart_charging.cpp │ ├── json │ │ ├── OCCT_TC_K_41_CS │ │ │ ├── 0 │ │ │ │ └── id1-ChargingStationMaxProfile.json │ │ │ ├── 1 │ │ │ │ ├── id2-TxDefaultProfile.json │ │ │ │ └── id2-TxProfile.json │ │ │ └── README.md │ │ ├── README.md │ │ ├── baseline │ │ │ ├── README.md │ │ │ ├── TxProfile_1.json │ │ │ └── TxProfile_100.json │ │ ├── case_one │ │ │ ├── README.md │ │ │ ├── TxProfile_1.json │ │ │ └── TxProfile_100.json │ │ ├── external │ │ │ ├── 0 │ │ │ │ ├── ChargingStationExternalConstraintProfile_grid_hourly.json │ │ │ │ └── ChargingStationMaxProfile_2000.json │ │ │ ├── 1 │ │ │ │ └── TXProfile_2001.json │ │ │ └── README.md │ │ ├── grid │ │ │ ├── README.md │ │ │ └── TxProfile_grid_hourly.json │ │ ├── layered │ │ │ ├── README.md │ │ │ ├── TXProfile_single.json │ │ │ └── TxProfile_grid_hourly.json │ │ ├── layered_recurring │ │ │ ├── README.md │ │ │ ├── TXProfile_single.json │ │ │ └── TxProfile_grid_hourly.json │ │ ├── max │ │ │ ├── 0 │ │ │ │ └── ChargingStationMaxProfile_grid_hourly.json │ │ │ ├── 1 │ │ │ │ ├── TXProfile_2000.json │ │ │ │ └── TXProfile_2001.json │ │ │ └── README.md │ │ ├── no_gap │ │ │ ├── TxDefaultProfile_401.json │ │ │ └── TxDefaultProfile_402.json │ │ ├── relative │ │ │ ├── README.md │ │ │ ├── TxDefault_relative.json │ │ │ ├── TxProfile_grid_hourly.json │ │ │ └── TxProfile_relative.json │ │ └── singles │ │ │ ├── Absolute_301.json │ │ │ ├── Absolute_NoDuration_301.json │ │ │ ├── ChargingStationMaxProfile_24_Ampere.json │ │ │ ├── ChargingStationMaxProfile_401.json │ │ │ ├── ProfileA.json │ │ │ ├── README.md │ │ │ ├── Recurring_Daily_301.json │ │ │ ├── Recurring_Daily_302_phase_limit.json │ │ │ ├── Recurring_Daily_NoDuration_301.json │ │ │ ├── Recurring_Weekly_301.json │ │ │ ├── Recurring_Weekly_NoDuration_301.json │ │ │ ├── Relative_301.json │ │ │ ├── Relative_302_phase_limit.json │ │ │ ├── Relative_303.json │ │ │ ├── Relative_MultipleChargingSchedules.json │ │ │ ├── Relative_NoDuration_301.json │ │ │ ├── TXDefaultProfile_25_Watt.json │ │ │ ├── TXProfile_Absolute_Start18-04.json │ │ │ └── TxProfile_CONCERNING_overlapping_periods.json │ ├── mocks │ │ ├── component_state_manager_mock.hpp │ │ ├── connectivity_manager_mock.hpp │ │ ├── database_handler_fake.hpp │ │ ├── database_handler_mock.hpp │ │ ├── device_model_storage_interface_mock.hpp │ │ ├── evse_manager_fake.hpp │ │ ├── evse_mock.hpp │ │ ├── message_dispatcher_mock.hpp │ │ ├── ocsp_updater_mock.hpp │ │ └── smart_charging_mock.hpp │ ├── smart_charging_test_utils.cpp │ ├── smart_charging_test_utils.hpp │ ├── stubs │ │ └── timer │ │ │ ├── everest │ │ │ └── timer.hpp │ │ │ ├── timer_stub.cpp │ │ │ └── timer_stub.hpp │ ├── test_charge_point.cpp │ ├── test_component_state_manager.cpp │ ├── test_composite_schedule.cpp │ ├── test_database_handler.cpp │ ├── test_database_migration_files.cpp │ ├── test_device_model.cpp │ ├── test_device_model_storage_sqlite.cpp │ ├── test_init_device_model_db.cpp │ ├── test_message_queue.cpp │ ├── test_notify_report_requests_splitter.cpp │ ├── test_ocsp_updater.cpp │ ├── test_profile.cpp │ └── utils_tests.cpp │ └── v21 │ ├── CMakeLists.txt │ ├── functional_blocks │ ├── CMakeLists.txt │ └── test_smart_charging.cpp │ ├── json │ ├── charging_rate_unit_combine │ │ ├── 0 │ │ │ └── ChargingStationMaxProfile_grid_hourly.json │ │ └── 1 │ │ │ ├── 0_TxDefaultProfile.json │ │ │ ├── 0_TxProfile.json │ │ │ ├── 1_TxDefaultProfile.json │ │ │ ├── 1_TxProfile.json │ │ │ └── 2_TxDefaultProfile.json │ ├── different_number_phases │ │ ├── 0 │ │ │ └── ChargingStationMaxProfile_grid_hourly.json │ │ └── 1 │ │ │ └── 0_TxProfile.json │ ├── max │ │ ├── 0 │ │ │ └── ChargingStationMaxProfile_grid_hourly.json │ │ └── 1 │ │ │ └── TXProfile_2000.json │ ├── no_limit_specified │ │ └── TxProfile.json │ ├── setpoints │ │ ├── TxProfile_1.json │ │ └── TxProfile_100.json │ ├── stack │ │ ├── 1_TxDefaultProfile_max_2kW.json │ │ ├── 2_TxDefaultProfile_sunday_nolimit.json │ │ └── 3_TxDefaultProfile_christmas2020_nolimit.json │ └── station_wide_three_phases │ │ ├── ChargingStationMaxProfileGrid_hourly.json │ │ └── TxDefaultProfileRelativeThreePhases.json │ └── test_composite_schedule.cpp ├── libocpp-unittests.cmake └── resources ├── unittest_device_model.db └── unittest_device_model_missing_required.db /.ci/build-kit/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.ci/build-kit/docker/Dockerfile -------------------------------------------------------------------------------- /.ci/build-kit/scripts/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.ci/build-kit/scripts/build_docs.sh -------------------------------------------------------------------------------- /.ci/build-kit/scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.ci/build-kit/scripts/compile.sh -------------------------------------------------------------------------------- /.ci/build-kit/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.ci/build-kit/scripts/install.sh -------------------------------------------------------------------------------- /.ci/build-kit/scripts/run_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.ci/build-kit/scripts/run_coverage.sh -------------------------------------------------------------------------------- /.ci/build-kit/scripts/run_unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.ci/build-kit/scripts/run_unit_tests.sh -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_and_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.github/workflows/build_and_test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/.gitignore -------------------------------------------------------------------------------- /3rd_party/websocketpp_utils/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/3rd_party/websocketpp_utils/base64.hpp -------------------------------------------------------------------------------- /3rd_party/websocketpp_utils/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/3rd_party/websocketpp_utils/uri.hpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/THIRD_PARTY.md -------------------------------------------------------------------------------- /config/CollectMigrationFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/CollectMigrationFiles.cmake -------------------------------------------------------------------------------- /config/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/logging.ini -------------------------------------------------------------------------------- /config/v16/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/CMakeLists.txt -------------------------------------------------------------------------------- /config/v16/config-docker-tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/config-docker-tls.json -------------------------------------------------------------------------------- /config/v16/config-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/config-docker.json -------------------------------------------------------------------------------- /config/v16/config-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/config-full.json -------------------------------------------------------------------------------- /config/v16/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/config.json -------------------------------------------------------------------------------- /config/v16/core_migrations/1_up-initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/core_migrations/1_up-initial.sql -------------------------------------------------------------------------------- /config/v16/core_migrations/2_down-offline-transaction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/core_migrations/2_down-offline-transaction.sql -------------------------------------------------------------------------------- /config/v16/core_migrations/2_up-offline-transaction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/core_migrations/2_up-offline-transaction.sql -------------------------------------------------------------------------------- /config/v16/core_migrations/3_down-persist-normal-messages.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE NORMAL_QUEUE; 2 | -------------------------------------------------------------------------------- /config/v16/core_migrations/3_up-persist-normal-messages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/core_migrations/3_up-persist-normal-messages.sql -------------------------------------------------------------------------------- /config/v16/core_migrations/4_down-drop-ocsp-request.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/core_migrations/4_down-drop-ocsp-request.sql -------------------------------------------------------------------------------- /config/v16/core_migrations/4_up-drop-ocsp-request.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE OCSP_REQUEST; 2 | -------------------------------------------------------------------------------- /config/v16/profile_schemas/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/Config.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/Core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/Core.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/CostAndPrice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/CostAndPrice.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/Custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/Custom.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/FirmwareManagement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/FirmwareManagement.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/Internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/Internal.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/LocalAuthListManagement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/LocalAuthListManagement.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/PnC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/PnC.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/Reservation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/Reservation.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/Security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/Security.json -------------------------------------------------------------------------------- /config/v16/profile_schemas/SmartCharging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v16/profile_schemas/SmartCharging.json -------------------------------------------------------------------------------- /config/v16/user_config/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /config/v2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/CMakeLists.txt -------------------------------------------------------------------------------- /config/v2/component_config/custom/Connector_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/custom/Connector_1_1.json -------------------------------------------------------------------------------- /config/v2/component_config/custom/Connector_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/custom/Connector_2_1.json -------------------------------------------------------------------------------- /config/v2/component_config/custom/EVSE_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/custom/EVSE_1.json -------------------------------------------------------------------------------- /config/v2/component_config/custom/EVSE_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/custom/EVSE_2.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/AlignedDataCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/AlignedDataCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/AuthCacheCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/AuthCacheCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/AuthCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/AuthCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/ChargingStation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/ChargingStation.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/ChargingStatusIndicator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/ChargingStatusIndicator.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/ClockCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/ClockCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/CustomizationCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/CustomizationCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/DeviceDataCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/DeviceDataCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/DisplayMessageCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/DisplayMessageCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/ISO15118Ctrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/ISO15118Ctrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/InternalCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/InternalCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/LocalAuthListCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/LocalAuthListCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/MonitoringCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/MonitoringCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/OCPPCommCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/OCPPCommCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/ReservationCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/ReservationCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/SampledDataCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/SampledDataCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/SecurityCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/SecurityCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/SmartChargingCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/SmartChargingCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/TariffCostCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/TariffCostCtrlr.json -------------------------------------------------------------------------------- /config/v2/component_config/standardized/TxCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/component_config/standardized/TxCtrlr.json -------------------------------------------------------------------------------- /config/v2/core_migrations/1_up-initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/core_migrations/1_up-initial.sql -------------------------------------------------------------------------------- /config/v2/core_migrations/2_down-auth_cache_management.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/core_migrations/2_down-auth_cache_management.sql -------------------------------------------------------------------------------- /config/v2/core_migrations/2_up-auth_cache_management.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/core_migrations/2_up-auth_cache_management.sql -------------------------------------------------------------------------------- /config/v2/core_migrations/3_down-persist-normal-messages.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE NORMAL_QUEUE; 2 | -------------------------------------------------------------------------------- /config/v2/core_migrations/3_up-persist-normal-messages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/core_migrations/3_up-persist-normal-messages.sql -------------------------------------------------------------------------------- /config/v2/core_migrations/4_down-transactions_db.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE TRANSACTIONS; -------------------------------------------------------------------------------- /config/v2/core_migrations/4_up-transactions_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/core_migrations/4_up-transactions_db.sql -------------------------------------------------------------------------------- /config/v2/core_migrations/5_down-charging_profiles_db.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE CHARGING_PROFILES; 2 | -------------------------------------------------------------------------------- /config/v2/core_migrations/5_up-charging_profiles_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/core_migrations/5_up-charging_profiles_db.sql -------------------------------------------------------------------------------- /config/v2/core_migrations/6_down-charging_profiles_source_tx_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/core_migrations/6_down-charging_profiles_source_tx_id.sql -------------------------------------------------------------------------------- /config/v2/core_migrations/6_up-charging_profiles_source_tx_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/core_migrations/6_up-charging_profiles_source_tx_id.sql -------------------------------------------------------------------------------- /config/v2/device_model_migrations/1_up-initial.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/device_model_migrations/1_up-initial.sql -------------------------------------------------------------------------------- /config/v2/device_model_migrations/2_down-variable_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/device_model_migrations/2_down-variable_source.sql -------------------------------------------------------------------------------- /config/v2/device_model_migrations/2_up-variable_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/device_model_migrations/2_up-variable_source.sql -------------------------------------------------------------------------------- /config/v2/device_model_migrations/3_down-variable_required.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/device_model_migrations/3_down-variable_required.sql -------------------------------------------------------------------------------- /config/v2/device_model_migrations/3_up-variable_required.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/config/v2/device_model_migrations/3_up-variable_required.sql -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /doc/common/build-with-fetchcontent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/common/build-with-fetchcontent/CMakeLists.txt -------------------------------------------------------------------------------- /doc/common/build-with-fetchcontent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/common/build-with-fetchcontent/README.md -------------------------------------------------------------------------------- /doc/common/california_pricing_requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/common/california_pricing_requirements.md -------------------------------------------------------------------------------- /doc/common/database_exception_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/common/database_exception_handling.md -------------------------------------------------------------------------------- /doc/common/database_migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/common/database_migrations.md -------------------------------------------------------------------------------- /doc/common/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/common/getting_started.md -------------------------------------------------------------------------------- /doc/common/smart_charging_profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/common/smart_charging_profiles.md -------------------------------------------------------------------------------- /doc/message_dispatching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/message_dispatching.md -------------------------------------------------------------------------------- /doc/networkconnectivity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/networkconnectivity/README.md -------------------------------------------------------------------------------- /doc/v16/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v16/getting_started.md -------------------------------------------------------------------------------- /doc/v16/state_chart_1_6.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v16/state_chart_1_6.drawio -------------------------------------------------------------------------------- /doc/v2/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/getting_started.md -------------------------------------------------------------------------------- /doc/v2/ocpp_201_device_model_initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/ocpp_201_device_model_initialization.md -------------------------------------------------------------------------------- /doc/v2/ocpp_201_monitors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/ocpp_201_monitors.md -------------------------------------------------------------------------------- /doc/v2/ocpp_201_monitors_periodic_flowchart.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/ocpp_201_monitors_periodic_flowchart.puml -------------------------------------------------------------------------------- /doc/v2/ocpp_201_monitors_trigger_flowchart.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/ocpp_201_monitors_trigger_flowchart.puml -------------------------------------------------------------------------------- /doc/v2/ocpp_201_smart_charging_in_depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/ocpp_201_smart_charging_in_depth.md -------------------------------------------------------------------------------- /doc/v2/ocpp_2x_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/ocpp_2x_status.md -------------------------------------------------------------------------------- /doc/v2/resumeInterruptedTransactions/resumeInterruptedTransactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/resumeInterruptedTransactions/resumeInterruptedTransactions.png -------------------------------------------------------------------------------- /doc/v2/resumeInterruptedTransactions/resumeInterruptedTransactions.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/doc/v2/resumeInterruptedTransactions/resumeInterruptedTransactions.puml -------------------------------------------------------------------------------- /include/ocpp/common/aligned_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/aligned_timer.hpp -------------------------------------------------------------------------------- /include/ocpp/common/call_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/call_types.hpp -------------------------------------------------------------------------------- /include/ocpp/common/charging_station_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/charging_station_base.hpp -------------------------------------------------------------------------------- /include/ocpp/common/cistring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/cistring.hpp -------------------------------------------------------------------------------- /include/ocpp/common/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/constants.hpp -------------------------------------------------------------------------------- /include/ocpp/common/custom_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/custom_iterators.hpp -------------------------------------------------------------------------------- /include/ocpp/common/database/database_handler_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/database/database_handler_common.hpp -------------------------------------------------------------------------------- /include/ocpp/common/evse_security.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/evse_security.hpp -------------------------------------------------------------------------------- /include/ocpp/common/evse_security_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/evse_security_impl.hpp -------------------------------------------------------------------------------- /include/ocpp/common/message_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/message_dispatcher.hpp -------------------------------------------------------------------------------- /include/ocpp/common/message_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/message_queue.hpp -------------------------------------------------------------------------------- /include/ocpp/common/ocpp_logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/ocpp_logging.hpp -------------------------------------------------------------------------------- /include/ocpp/common/safe_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/safe_queue.hpp -------------------------------------------------------------------------------- /include/ocpp/common/schemas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/schemas.hpp -------------------------------------------------------------------------------- /include/ocpp/common/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/string.hpp -------------------------------------------------------------------------------- /include/ocpp/common/support_older_cpp_versions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/support_older_cpp_versions.hpp -------------------------------------------------------------------------------- /include/ocpp/common/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/types.hpp -------------------------------------------------------------------------------- /include/ocpp/common/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/utils.hpp -------------------------------------------------------------------------------- /include/ocpp/common/websocket/websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/websocket/websocket.hpp -------------------------------------------------------------------------------- /include/ocpp/common/websocket/websocket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/websocket/websocket_base.hpp -------------------------------------------------------------------------------- /include/ocpp/common/websocket/websocket_libwebsockets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/websocket/websocket_libwebsockets.hpp -------------------------------------------------------------------------------- /include/ocpp/common/websocket/websocket_uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/common/websocket/websocket_uri.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/charge_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/charge_point.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/charge_point_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/charge_point_configuration.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/charge_point_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/charge_point_impl.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/charge_point_state_machine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/charge_point_state_machine.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/connector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/connector.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/database_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/database_handler.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/message_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/message_dispatcher.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/Authorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/Authorize.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/BootNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/BootNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/CancelReservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/CancelReservation.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/CertificateSigned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/CertificateSigned.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/ChangeAvailability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/ChangeAvailability.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/ChangeConfiguration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/ChangeConfiguration.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/ClearCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/ClearCache.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/ClearChargingProfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/ClearChargingProfile.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/DataTransfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/DataTransfer.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/DeleteCertificate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/DeleteCertificate.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/DiagnosticsStatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/DiagnosticsStatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/ExtendedTriggerMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/ExtendedTriggerMessage.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/FirmwareStatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/FirmwareStatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/GetCompositeSchedule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/GetCompositeSchedule.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/GetConfiguration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/GetConfiguration.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/GetDiagnostics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/GetDiagnostics.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/GetInstalledCertificateIds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/GetInstalledCertificateIds.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/GetLocalListVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/GetLocalListVersion.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/GetLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/GetLog.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/Heartbeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/Heartbeat.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/InstallCertificate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/InstallCertificate.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/LogStatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/LogStatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/MeterValues.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/MeterValues.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/RemoteStartTransaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/RemoteStartTransaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/RemoteStopTransaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/RemoteStopTransaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/ReserveNow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/ReserveNow.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/Reset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/Reset.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/SecurityEventNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/SecurityEventNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/SendLocalList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/SendLocalList.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/SetChargingProfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/SetChargingProfile.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/SignCertificate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/SignCertificate.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/SignedFirmwareStatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/SignedFirmwareStatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/SignedUpdateFirmware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/SignedUpdateFirmware.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/StartTransaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/StartTransaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/StatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/StatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/StopTransaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/StopTransaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/TriggerMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/TriggerMessage.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/UnlockConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/UnlockConnector.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/messages/UpdateFirmware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/messages/UpdateFirmware.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/ocpp_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/ocpp_enums.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/ocpp_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/ocpp_types.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/profile.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/smart_charging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/smart_charging.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/transaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/types.hpp -------------------------------------------------------------------------------- /include/ocpp/v16/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v16/utils.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/average_meter_values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/average_meter_values.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/charge_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/charge_point.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/charge_point_callbacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/charge_point_callbacks.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/comparators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/comparators.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/component_state_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/component_state_manager.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/connectivity_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/connectivity_manager.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/connector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/connector.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/constants.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/ctrlr_component_variables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/ctrlr_component_variables.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/database_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/database_handler.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/device_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/device_model.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/device_model_storage_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/device_model_storage_interface.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/device_model_storage_sqlite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/device_model_storage_sqlite.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/enums.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/evse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/evse.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/evse_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/evse_manager.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/authorization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/authorization.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/availability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/availability.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/data_transfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/data_transfer.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/diagnostics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/diagnostics.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/display_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/display_message.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/firmware_update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/firmware_update.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/functional_block_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/functional_block_context.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/meter_values.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/meter_values.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/provisioning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/provisioning.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/remote_transaction_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/remote_transaction_control.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/reservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/reservation.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/security.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/security.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/smart_charging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/smart_charging.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/tariff_and_cost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/tariff_and_cost.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/functional_blocks/transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/functional_blocks/transaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/init_device_model_db.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/init_device_model_db.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/message_dispatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/message_dispatcher.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/message_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/message_handler.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/Authorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/Authorize.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/BootNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/BootNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/CancelReservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/CancelReservation.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/CertificateSigned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/CertificateSigned.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ChangeAvailability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ChangeAvailability.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ClearCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ClearCache.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ClearChargingProfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ClearChargingProfile.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ClearDisplayMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ClearDisplayMessage.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ClearVariableMonitoring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ClearVariableMonitoring.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ClearedChargingLimit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ClearedChargingLimit.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/CostUpdated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/CostUpdated.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/CustomerInformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/CustomerInformation.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/DataTransfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/DataTransfer.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/DeleteCertificate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/DeleteCertificate.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/FirmwareStatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/FirmwareStatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/Get15118EVCertificate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/Get15118EVCertificate.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetBaseReport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetBaseReport.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetCertificateStatus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetCertificateStatus.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetChargingProfiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetChargingProfiles.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetCompositeSchedule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetCompositeSchedule.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetDisplayMessages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetDisplayMessages.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetInstalledCertificateIds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetInstalledCertificateIds.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetLocalListVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetLocalListVersion.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetLog.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetMonitoringReport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetMonitoringReport.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetReport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetReport.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetTransactionStatus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetTransactionStatus.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/GetVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/GetVariables.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/Heartbeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/Heartbeat.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/InstallCertificate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/InstallCertificate.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/LogStatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/LogStatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/MeterValues.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/MeterValues.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/NotifyChargingLimit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/NotifyChargingLimit.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/NotifyCustomerInformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/NotifyCustomerInformation.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/NotifyDisplayMessages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/NotifyDisplayMessages.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/NotifyEVChargingNeeds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/NotifyEVChargingNeeds.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/NotifyEVChargingSchedule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/NotifyEVChargingSchedule.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/NotifyEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/NotifyEvent.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/NotifyMonitoringReport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/NotifyMonitoringReport.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/NotifyReport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/NotifyReport.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/PublishFirmware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/PublishFirmware.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/PublishFirmwareStatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/PublishFirmwareStatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ReportChargingProfiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ReportChargingProfiles.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/RequestStartTransaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/RequestStartTransaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/RequestStopTransaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/RequestStopTransaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ReservationStatusUpdate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ReservationStatusUpdate.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/ReserveNow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/ReserveNow.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/Reset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/Reset.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SecurityEventNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SecurityEventNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SendLocalList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SendLocalList.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SetChargingProfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SetChargingProfile.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SetDisplayMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SetDisplayMessage.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SetMonitoringBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SetMonitoringBase.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SetMonitoringLevel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SetMonitoringLevel.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SetNetworkProfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SetNetworkProfile.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SetVariableMonitoring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SetVariableMonitoring.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SetVariables.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SetVariables.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/SignCertificate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/SignCertificate.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/StatusNotification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/StatusNotification.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/TransactionEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/TransactionEvent.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/TriggerMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/TriggerMessage.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/UnlockConnector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/UnlockConnector.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/UnpublishFirmware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/UnpublishFirmware.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/messages/UpdateFirmware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/messages/UpdateFirmware.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/monitoring_updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/monitoring_updater.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/notify_report_requests_splitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/notify_report_requests_splitter.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/ocpp_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/ocpp_enums.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/ocpp_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/ocpp_types.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/ocsp_updater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/ocsp_updater.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/profile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/profile.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/transaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/transaction.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/types.hpp -------------------------------------------------------------------------------- /include/ocpp/v2/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v2/utils.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/functional_blocks/bidirectional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/functional_blocks/bidirectional.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/AFRRSignal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/AFRRSignal.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/AdjustPeriodicEventStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/AdjustPeriodicEventStream.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/BatterySwap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/BatterySwap.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/ChangeTransactionTariff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/ChangeTransactionTariff.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/ClearDERControl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/ClearDERControl.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/ClearTariffs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/ClearTariffs.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/ClosePeriodicEventStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/ClosePeriodicEventStream.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/GetCertificateChainStatus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/GetCertificateChainStatus.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/GetDERControl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/GetDERControl.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/GetPeriodicEventStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/GetPeriodicEventStream.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/GetTariffs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/GetTariffs.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/NotifyAllowedEnergyTransfer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/NotifyAllowedEnergyTransfer.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/NotifyDERAlarm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/NotifyDERAlarm.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/NotifyDERStartStop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/NotifyDERStartStop.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/NotifyPeriodicEventStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/NotifyPeriodicEventStream.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/NotifyPriorityCharging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/NotifyPriorityCharging.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/NotifySettlement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/NotifySettlement.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/NotifyWebPaymentStarted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/NotifyWebPaymentStarted.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/OpenPeriodicEventStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/OpenPeriodicEventStream.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/PullDynamicScheduleUpdate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/PullDynamicScheduleUpdate.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/ReportDERControl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/ReportDERControl.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/RequestBatterySwap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/RequestBatterySwap.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/SetDERControl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/SetDERControl.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/SetDefaultTariff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/SetDefaultTariff.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/UpdateDynamicSchedule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/UpdateDynamicSchedule.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/UsePriorityCharging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/UsePriorityCharging.hpp -------------------------------------------------------------------------------- /include/ocpp/v21/messages/VatNumberValidation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/include/ocpp/v21/messages/VatNumberValidation.hpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ocpp/common/call_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/call_types.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/charging_station_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/charging_station_base.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/database/database_handler_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/database/database_handler_common.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/evse_security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/evse_security.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/evse_security_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/evse_security_impl.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/ocpp_logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/ocpp_logging.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/schemas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/schemas.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/types.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/utils.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/websocket/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/websocket/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ocpp/common/websocket/websocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/websocket/websocket.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/websocket/websocket_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/websocket/websocket_base.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/websocket/websocket_libwebsockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/websocket/websocket_libwebsockets.cpp -------------------------------------------------------------------------------- /lib/ocpp/common/websocket/websocket_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/common/websocket/websocket_uri.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/charge_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/charge_point.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/charge_point_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/charge_point_configuration.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/charge_point_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/charge_point_impl.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/charge_point_state_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/charge_point_state_machine.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/database_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/database_handler.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/message_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/message_dispatcher.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/message_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/message_queue.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/Authorize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/Authorize.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/BootNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/BootNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/CancelReservation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/CancelReservation.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/CertificateSigned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/CertificateSigned.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/ChangeAvailability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/ChangeAvailability.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/ChangeConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/ChangeConfiguration.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/ClearCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/ClearCache.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/ClearChargingProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/ClearChargingProfile.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/DataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/DataTransfer.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/DeleteCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/DeleteCertificate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/DiagnosticsStatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/DiagnosticsStatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/ExtendedTriggerMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/ExtendedTriggerMessage.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/FirmwareStatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/FirmwareStatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/GetCompositeSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/GetCompositeSchedule.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/GetConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/GetConfiguration.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/GetDiagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/GetDiagnostics.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/GetInstalledCertificateIds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/GetInstalledCertificateIds.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/GetLocalListVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/GetLocalListVersion.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/GetLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/GetLog.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/Heartbeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/Heartbeat.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/InstallCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/InstallCertificate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/LogStatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/LogStatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/MeterValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/MeterValues.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/RemoteStartTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/RemoteStartTransaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/RemoteStopTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/RemoteStopTransaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/ReserveNow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/ReserveNow.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/Reset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/Reset.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/SecurityEventNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/SecurityEventNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/SendLocalList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/SendLocalList.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/SetChargingProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/SetChargingProfile.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/SignCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/SignCertificate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/SignedFirmwareStatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/SignedFirmwareStatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/SignedUpdateFirmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/SignedUpdateFirmware.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/StartTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/StartTransaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/StatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/StatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/StopTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/StopTransaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/TriggerMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/TriggerMessage.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/UnlockConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/UnlockConnector.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/messages/UpdateFirmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/messages/UpdateFirmware.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/ocpp_enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/ocpp_enums.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/ocpp_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/ocpp_types.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/profile.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/smart_charging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/smart_charging.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/transaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/types.cpp -------------------------------------------------------------------------------- /lib/ocpp/v16/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v16/utils.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/average_meter_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/average_meter_values.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/charge_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/charge_point.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/charge_point_callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/charge_point_callbacks.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/component_state_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/component_state_manager.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/connectivity_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/connectivity_manager.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/connector.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/ctrlr_component_variables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/ctrlr_component_variables.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/database_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/database_handler.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/device_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/device_model.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/device_model_storage_sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/device_model_storage_sqlite.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/enums.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/evse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/evse.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/evse_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/evse_manager.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/authorization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/authorization.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/availability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/availability.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/data_transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/data_transfer.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/diagnostics.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/display_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/display_message.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/firmware_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/firmware_update.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/meter_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/meter_values.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/provisioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/provisioning.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/remote_transaction_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/remote_transaction_control.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/reservation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/reservation.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/security.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/smart_charging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/smart_charging.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/tariff_and_cost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/tariff_and_cost.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/functional_blocks/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/functional_blocks/transaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/init_device_model_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/init_device_model_db.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/message_dispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/message_dispatcher.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/message_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/message_queue.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/Authorize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/Authorize.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/BootNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/BootNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/CancelReservation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/CancelReservation.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/CertificateSigned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/CertificateSigned.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ChangeAvailability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ChangeAvailability.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ClearCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ClearCache.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ClearChargingProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ClearChargingProfile.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ClearDisplayMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ClearDisplayMessage.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ClearVariableMonitoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ClearVariableMonitoring.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ClearedChargingLimit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ClearedChargingLimit.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/CostUpdated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/CostUpdated.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/CustomerInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/CustomerInformation.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/DataTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/DataTransfer.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/DeleteCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/DeleteCertificate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/FirmwareStatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/FirmwareStatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/Get15118EVCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/Get15118EVCertificate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetBaseReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetBaseReport.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetCertificateStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetCertificateStatus.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetChargingProfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetChargingProfiles.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetCompositeSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetCompositeSchedule.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetDisplayMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetDisplayMessages.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetInstalledCertificateIds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetInstalledCertificateIds.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetLocalListVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetLocalListVersion.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetLog.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetMonitoringReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetMonitoringReport.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetReport.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetTransactionStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetTransactionStatus.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/GetVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/GetVariables.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/Heartbeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/Heartbeat.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/InstallCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/InstallCertificate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/LogStatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/LogStatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/MeterValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/MeterValues.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/NotifyChargingLimit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/NotifyChargingLimit.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/NotifyCustomerInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/NotifyCustomerInformation.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/NotifyDisplayMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/NotifyDisplayMessages.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/NotifyEVChargingNeeds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/NotifyEVChargingNeeds.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/NotifyEVChargingSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/NotifyEVChargingSchedule.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/NotifyEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/NotifyEvent.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/NotifyMonitoringReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/NotifyMonitoringReport.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/NotifyReport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/NotifyReport.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/PublishFirmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/PublishFirmware.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/PublishFirmwareStatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/PublishFirmwareStatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ReportChargingProfiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ReportChargingProfiles.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/RequestStartTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/RequestStartTransaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/RequestStopTransaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/RequestStopTransaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ReservationStatusUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ReservationStatusUpdate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/ReserveNow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/ReserveNow.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/Reset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/Reset.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SecurityEventNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SecurityEventNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SendLocalList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SendLocalList.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SetChargingProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SetChargingProfile.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SetDisplayMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SetDisplayMessage.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SetMonitoringBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SetMonitoringBase.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SetMonitoringLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SetMonitoringLevel.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SetNetworkProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SetNetworkProfile.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SetVariableMonitoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SetVariableMonitoring.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SetVariables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SetVariables.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/SignCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/SignCertificate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/StatusNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/StatusNotification.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/TransactionEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/TransactionEvent.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/TriggerMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/TriggerMessage.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/UnlockConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/UnlockConnector.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/UnpublishFirmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/UnpublishFirmware.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/messages/UpdateFirmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/messages/UpdateFirmware.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/monitoring_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/monitoring_updater.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/notify_report_requests_splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/notify_report_requests_splitter.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/ocpp_enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/ocpp_enums.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/ocpp_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/ocpp_types.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/ocsp_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/ocsp_updater.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/profile.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/transaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/transaction.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/types.cpp -------------------------------------------------------------------------------- /lib/ocpp/v2/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v2/utils.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/functional_blocks/bidirectional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/functional_blocks/bidirectional.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/AFRRSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/AFRRSignal.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/AdjustPeriodicEventStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/AdjustPeriodicEventStream.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/BatterySwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/BatterySwap.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/ChangeTransactionTariff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/ChangeTransactionTariff.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/ClearDERControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/ClearDERControl.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/ClearTariffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/ClearTariffs.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/ClosePeriodicEventStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/ClosePeriodicEventStream.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/GetCertificateChainStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/GetCertificateChainStatus.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/GetDERControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/GetDERControl.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/GetPeriodicEventStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/GetPeriodicEventStream.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/GetTariffs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/GetTariffs.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/NotifyAllowedEnergyTransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/NotifyAllowedEnergyTransfer.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/NotifyDERAlarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/NotifyDERAlarm.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/NotifyDERStartStop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/NotifyDERStartStop.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/NotifyPeriodicEventStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/NotifyPeriodicEventStream.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/NotifyPriorityCharging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/NotifyPriorityCharging.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/NotifySettlement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/NotifySettlement.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/NotifyWebPaymentStarted.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/NotifyWebPaymentStarted.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/OpenPeriodicEventStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/OpenPeriodicEventStream.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/PullDynamicScheduleUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/PullDynamicScheduleUpdate.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/ReportDERControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/ReportDERControl.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/RequestBatterySwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/RequestBatterySwap.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/SetDERControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/SetDERControl.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/SetDefaultTariff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/SetDefaultTariff.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/UpdateDynamicSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/UpdateDynamicSchedule.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/UsePriorityCharging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/UsePriorityCharging.cpp -------------------------------------------------------------------------------- /lib/ocpp/v21/messages/VatNumberValidation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/lib/ocpp/v21/messages/VatNumberValidation.cpp -------------------------------------------------------------------------------- /run-docker-tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/run-docker-tls.sh -------------------------------------------------------------------------------- /run-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/run-docker.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/charge_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/charge_point.cpp -------------------------------------------------------------------------------- /src/code_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/README.md -------------------------------------------------------------------------------- /src/code_generator/common/generate_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/generate_cpp.py -------------------------------------------------------------------------------- /src/code_generator/common/generate_everest_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/generate_everest_types.py -------------------------------------------------------------------------------- /src/code_generator/common/templates/everest_type.yaml.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/templates/everest_type.yaml.jinja -------------------------------------------------------------------------------- /src/code_generator/common/templates/message.cpp.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/templates/message.cpp.jinja -------------------------------------------------------------------------------- /src/code_generator/common/templates/message.hpp.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/templates/message.hpp.jinja -------------------------------------------------------------------------------- /src/code_generator/common/templates/messages.cmakelists.txt.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/templates/messages.cmakelists.txt.jinja -------------------------------------------------------------------------------- /src/code_generator/common/templates/ocpp_enums.cpp.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/templates/ocpp_enums.cpp.jinja -------------------------------------------------------------------------------- /src/code_generator/common/templates/ocpp_enums.hpp.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/templates/ocpp_enums.hpp.jinja -------------------------------------------------------------------------------- /src/code_generator/common/templates/ocpp_types.cpp.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/templates/ocpp_types.cpp.jinja -------------------------------------------------------------------------------- /src/code_generator/common/templates/ocpp_types.hpp.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/templates/ocpp_types.hpp.jinja -------------------------------------------------------------------------------- /src/code_generator/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/src/code_generator/common/utils.py -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/config/v16/resources/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v16/resources/config.json -------------------------------------------------------------------------------- /tests/config/v16/resources/user_config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/config/v2/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/pytest.ini -------------------------------------------------------------------------------- /tests/config/v2/resources/component_config/custom/Connector_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources/component_config/custom/Connector_1_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources/component_config/custom/Connector_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources/component_config/custom/Connector_2_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources/component_config/custom/EVSE_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources/component_config/custom/EVSE_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources/component_config/custom/EVSE_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources/component_config/custom/EVSE_2.json -------------------------------------------------------------------------------- /tests/config/v2/resources/component_config/standardized/UnitTestCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources/component_config/standardized/UnitTestCtrlr.json -------------------------------------------------------------------------------- /tests/config/v2/resources_changed/component_config/custom/Connector_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_changed/component_config/custom/Connector_1_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources_changed/component_config/custom/Connector_2_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_changed/component_config/custom/Connector_2_2.json -------------------------------------------------------------------------------- /tests/config/v2/resources_changed/component_config/custom/EVSE_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_changed/component_config/custom/EVSE_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources_changed/component_config/custom/EVSE_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_changed/component_config/custom/EVSE_2.json -------------------------------------------------------------------------------- /tests/config/v2/resources_changed/component_config/custom/EVSE_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_changed/component_config/custom/EVSE_3.json -------------------------------------------------------------------------------- /tests/config/v2/resources_changed/component_config/standardized/UnitTestCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_changed/component_config/standardized/UnitTestCtrlr.json -------------------------------------------------------------------------------- /tests/config/v2/resources_wrong/component_config_required_no_value/custom/Connector_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_wrong/component_config_required_no_value/custom/Connector_1_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources_wrong/component_config_required_no_value/custom/EVSE_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_wrong/component_config_required_no_value/custom/EVSE_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources_wrong/component_config_required_no_value/standardized/UnitTestCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_wrong/component_config_required_no_value/standardized/UnitTestCtrlr.json -------------------------------------------------------------------------------- /tests/config/v2/resources_wrong/component_config_wrong_value_type/custom/Connector_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_wrong/component_config_wrong_value_type/custom/Connector_1_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources_wrong/component_config_wrong_value_type/custom/EVSE_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_wrong/component_config_wrong_value_type/custom/EVSE_1.json -------------------------------------------------------------------------------- /tests/config/v2/resources_wrong/component_config_wrong_value_type/standardized/UnitTestCtrlr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/config/v2/resources_wrong/component_config_wrong_value_type/standardized/UnitTestCtrlr.json -------------------------------------------------------------------------------- /tests/lib/ocpp/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/CMakeLists.txt -------------------------------------------------------------------------------- /tests/lib/ocpp/common/database_testing_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/database_testing_utils.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/common/evse_security_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/evse_security_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/common/message_queue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/message_queue_test.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/common/smart_charging_matchers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/smart_charging_matchers.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/common/test_database_migration_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/test_database_migration_files.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/common/test_database_migration_files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/test_database_migration_files.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/common/test_message_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/test_message_queue.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/common/test_websocket_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/test_websocket_uri.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/common/utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/common/utils_tests.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/CMakeLists.txt -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/database_handler_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/database_handler_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/database_stub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/database_stub.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/database_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/database_tests.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/Absolute_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/Absolute_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/ChargingStationMaxProfile_24_Ampere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/ChargingStationMaxProfile_24_Ampere.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/ChargingStationMaxProfile_401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/ChargingStationMaxProfile_401.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/Recurring_Daily_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/Recurring_Daily_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/Recurring_Daily_302_phase_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/Recurring_Daily_302_phase_limit.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/Relative_302_phase_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/Relative_302_phase_limit.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/Relative_303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/Relative_303.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TXDefaultProfile_25_Watt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TXDefaultProfile_25_Watt.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxDefaultProfile_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxDefaultProfile_01.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxDefaultProfile_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxDefaultProfile_100.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxDefaultProfile_2kw_17-20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxDefaultProfile_2kw_17-20.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxDefaultProfile_401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxDefaultProfile_401.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxDefaultProfile_402.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxDefaultProfile_402.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxDefaultProfile_Absolute_Daily_2kw_1080.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxDefaultProfile_Absolute_Daily_2kw_1080.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxDefaultProfile_no_chargingRateUnit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxDefaultProfile_no_chargingRateUnit.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxDefault_relative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxDefault_relative.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxProfile_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxProfile_02.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxProfile_03_Absolute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxProfile_03_Absolute.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/json/TxProfile_grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/json/TxProfile_grid.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/profile_testsA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/profile_testsA.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/profile_testsB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/profile_testsB.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/profile_testsC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/profile_testsC.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/profile_tests_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/profile_tests_common.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/profile_tests_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/profile_tests_common.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/test_charge_point_state_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/test_charge_point_state_machine.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/test_composite_schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/test_composite_schedule.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/test_config_validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/test_config_validation.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/test_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/test_configuration.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/test_database_migration_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/test_database_migration_files.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/test_message_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/test_message_queue.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/test_smart_charging_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/test_smart_charging_handler.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v16/utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v16/utils_tests.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/CMakeLists.txt -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/comparators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/comparators.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/comparators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/comparators.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/device_model_test_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/device_model_test_helper.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/device_model_test_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/device_model_test_helper.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/functional_blocks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/functional_blocks/CMakeLists.txt -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/functional_blocks/test_authorization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/functional_blocks/test_authorization.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/functional_blocks/test_availability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/functional_blocks/test_availability.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/functional_blocks/test_data_transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/functional_blocks/test_data_transfer.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/functional_blocks/test_reservation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/functional_blocks/test_reservation.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/functional_blocks/test_security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/functional_blocks/test_security.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/functional_blocks/test_smart_charging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/functional_blocks/test_smart_charging.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/OCCT_TC_K_41_CS/0/id1-ChargingStationMaxProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/OCCT_TC_K_41_CS/0/id1-ChargingStationMaxProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/OCCT_TC_K_41_CS/1/id2-TxDefaultProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/OCCT_TC_K_41_CS/1/id2-TxDefaultProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/OCCT_TC_K_41_CS/1/id2-TxProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/OCCT_TC_K_41_CS/1/id2-TxProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/OCCT_TC_K_41_CS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/OCCT_TC_K_41_CS/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/baseline/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/baseline/TxProfile_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/baseline/TxProfile_1.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/baseline/TxProfile_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/baseline/TxProfile_100.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/case_one/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/case_one/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/case_one/TxProfile_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/case_one/TxProfile_1.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/case_one/TxProfile_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/case_one/TxProfile_100.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/external/0/ChargingStationExternalConstraintProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/external/0/ChargingStationExternalConstraintProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/external/0/ChargingStationMaxProfile_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/external/0/ChargingStationMaxProfile_2000.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/external/1/TXProfile_2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/external/1/TXProfile_2001.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/external/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/grid/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/grid/TxProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/grid/TxProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/layered/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/layered/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/layered/TXProfile_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/layered/TXProfile_single.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/layered/TxProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/layered/TxProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/layered_recurring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/layered_recurring/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/layered_recurring/TXProfile_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/layered_recurring/TXProfile_single.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/layered_recurring/TxProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/layered_recurring/TxProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/max/0/ChargingStationMaxProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/max/0/ChargingStationMaxProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/max/1/TXProfile_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/max/1/TXProfile_2000.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/max/1/TXProfile_2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/max/1/TXProfile_2001.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/max/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/max/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/no_gap/TxDefaultProfile_401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/no_gap/TxDefaultProfile_401.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/no_gap/TxDefaultProfile_402.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/no_gap/TxDefaultProfile_402.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/relative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/relative/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/relative/TxDefault_relative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/relative/TxDefault_relative.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/relative/TxProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/relative/TxProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/relative/TxProfile_relative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/relative/TxProfile_relative.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Absolute_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Absolute_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Absolute_NoDuration_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Absolute_NoDuration_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/ChargingStationMaxProfile_24_Ampere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/ChargingStationMaxProfile_24_Ampere.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/ChargingStationMaxProfile_401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/ChargingStationMaxProfile_401.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/ProfileA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/ProfileA.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/README.md -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Recurring_Daily_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Recurring_Daily_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Recurring_Daily_302_phase_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Recurring_Daily_302_phase_limit.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Recurring_Daily_NoDuration_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Recurring_Daily_NoDuration_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Recurring_Weekly_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Recurring_Weekly_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Recurring_Weekly_NoDuration_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Recurring_Weekly_NoDuration_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Relative_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Relative_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Relative_302_phase_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Relative_302_phase_limit.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Relative_303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Relative_303.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Relative_MultipleChargingSchedules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Relative_MultipleChargingSchedules.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/Relative_NoDuration_301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/Relative_NoDuration_301.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/TXDefaultProfile_25_Watt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/TXDefaultProfile_25_Watt.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/TXProfile_Absolute_Start18-04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/TXProfile_Absolute_Start18-04.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/json/singles/TxProfile_CONCERNING_overlapping_periods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/json/singles/TxProfile_CONCERNING_overlapping_periods.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/component_state_manager_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/component_state_manager_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/connectivity_manager_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/connectivity_manager_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/database_handler_fake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/database_handler_fake.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/database_handler_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/database_handler_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/device_model_storage_interface_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/device_model_storage_interface_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/evse_manager_fake.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/evse_manager_fake.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/evse_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/evse_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/message_dispatcher_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/message_dispatcher_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/ocsp_updater_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/ocsp_updater_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/mocks/smart_charging_mock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/mocks/smart_charging_mock.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/smart_charging_test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/smart_charging_test_utils.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/smart_charging_test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/smart_charging_test_utils.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/stubs/timer/everest/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/stubs/timer/everest/timer.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/stubs/timer/timer_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/stubs/timer/timer_stub.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/stubs/timer/timer_stub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/stubs/timer/timer_stub.hpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_charge_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_charge_point.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_component_state_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_component_state_manager.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_composite_schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_composite_schedule.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_database_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_database_handler.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_database_migration_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_database_migration_files.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_device_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_device_model.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_device_model_storage_sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_device_model_storage_sqlite.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_init_device_model_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_init_device_model_db.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_message_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_message_queue.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_notify_report_requests_splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_notify_report_requests_splitter.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_ocsp_updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_ocsp_updater.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/test_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/test_profile.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v2/utils_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v2/utils_tests.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/CMakeLists.txt -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/functional_blocks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/functional_blocks/CMakeLists.txt -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/functional_blocks/test_smart_charging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/functional_blocks/test_smart_charging.cpp -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/charging_rate_unit_combine/0/ChargingStationMaxProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/charging_rate_unit_combine/0/ChargingStationMaxProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/0_TxDefaultProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/0_TxDefaultProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/0_TxProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/0_TxProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/1_TxDefaultProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/1_TxDefaultProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/1_TxProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/1_TxProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/2_TxDefaultProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/charging_rate_unit_combine/1/2_TxDefaultProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/different_number_phases/0/ChargingStationMaxProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/different_number_phases/0/ChargingStationMaxProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/different_number_phases/1/0_TxProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/different_number_phases/1/0_TxProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/max/0/ChargingStationMaxProfile_grid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/max/0/ChargingStationMaxProfile_grid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/max/1/TXProfile_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/max/1/TXProfile_2000.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/no_limit_specified/TxProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/no_limit_specified/TxProfile.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/setpoints/TxProfile_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/setpoints/TxProfile_1.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/setpoints/TxProfile_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/setpoints/TxProfile_100.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/stack/1_TxDefaultProfile_max_2kW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/stack/1_TxDefaultProfile_max_2kW.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/stack/2_TxDefaultProfile_sunday_nolimit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/stack/2_TxDefaultProfile_sunday_nolimit.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/stack/3_TxDefaultProfile_christmas2020_nolimit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/stack/3_TxDefaultProfile_christmas2020_nolimit.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/station_wide_three_phases/ChargingStationMaxProfileGrid_hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/station_wide_three_phases/ChargingStationMaxProfileGrid_hourly.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/json/station_wide_three_phases/TxDefaultProfileRelativeThreePhases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/json/station_wide_three_phases/TxDefaultProfileRelativeThreePhases.json -------------------------------------------------------------------------------- /tests/lib/ocpp/v21/test_composite_schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/lib/ocpp/v21/test_composite_schedule.cpp -------------------------------------------------------------------------------- /tests/libocpp-unittests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/libocpp-unittests.cmake -------------------------------------------------------------------------------- /tests/resources/unittest_device_model.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/resources/unittest_device_model.db -------------------------------------------------------------------------------- /tests/resources/unittest_device_model_missing_required.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVerest/libocpp/HEAD/tests/resources/unittest_device_model_missing_required.db --------------------------------------------------------------------------------