Skip to content

Commit

Permalink
update copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
matth-x committed May 19, 2024
1 parent cad22da commit 8fa0258
Show file tree
Hide file tree
Showing 118 changed files with 245 additions and 193 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# matth-x/MicroOcpp
# Copyright Matthias Akstaller 2019 - 2024
# MIT License

name: documentation
on:
push:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/esp-idf.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# matth-x/MicroOcpp
# Copyright Matthias Akstaller 2019 - 2024
# MIT License

name: ESP-IDF CI

on:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pio.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# matth-x/MicroOcpp
# Copyright Matthias Akstaller 2019 - 2024
# MIT License

name: PlatformIO CI

on:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/platformless.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# matth-x/MicroOcpp
# Copyright Matthias Akstaller 2019 - 2024
# MIT License

name: Default Compilation

on:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# matth-x/MicroOcpp
# Copyright Matthias Akstaller 2019 - 2024
# MIT License

name: Unit tests

on:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 - 2023 Matthias Akstaller
Copyright (c) 2019 - 2024 Matthias Akstaller

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion examples/ESP-TLS/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <Arduino.h>
Expand Down
2 changes: 1 addition & 1 deletion examples/ESP/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <Arduino.h>
Expand Down
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
; matth-x/MicroOcpp
; Copyright Matthias Akstaller 2019 - 2023
; Copyright Matthias Akstaller 2019 - 2024
; MIT License

[platformio]
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/Configuration.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/Configuration.h>
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Core/Configuration.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef CONFIGURATION_H
#define CONFIGURATION_H
#ifndef MO_CONFIGURATION_H
#define MO_CONFIGURATION_H

#include <MicroOcpp/Core/ConfigurationKeyValue.h>
#include <MicroOcpp/Core/ConfigurationContainer.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/ConfigurationContainer.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/ConfigurationContainer.h>
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Core/ConfigurationContainer.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef CONFIGURATIONCONTAINER_H
#define CONFIGURATIONCONTAINER_H
#ifndef MO_CONFIGURATIONCONTAINER_H
#define MO_CONFIGURATIONCONTAINER_H

#include <vector>
#include <memory>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/ConfigurationContainerFlash.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/ConfigurationContainerFlash.h>
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Core/ConfigurationContainerFlash.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef CONFIGURATIONCONTAINERFLASH_H
#define CONFIGURATIONCONTAINERFLASH_H
#ifndef MO_CONFIGURATIONCONTAINERFLASH_H
#define MO_CONFIGURATIONCONTAINERFLASH_H

#include <MicroOcpp/Core/ConfigurationContainer.h>
#include <MicroOcpp/Core/FilesystemAdapter.h>
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Core/ConfigurationOptions.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef CONFIGURATIONOPTIONS_H
#define CONFIGURATIONOPTIONS_H
#ifndef MO_CONFIGURATIONOPTIONS_H
#define MO_CONFIGURATIONOPTIONS_H

#include <stdint.h>

Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/Context.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/Context.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/FilesystemAdapter.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/FilesystemAdapter.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/FilesystemAdapter.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_FILESYSTEMADAPTER_H
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/FilesystemUtils.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/FilesystemAdapter.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/FilesystemUtils.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_FILESYSTEMUTILS_H
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Core/OcppError.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef OCPPERROR_H
#define OCPPERROR_H
#ifndef MO_OCPPERROR_H
#define MO_OCPPERROR_H

#include <ArduinoJson.h>

Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/Operation.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/Operation.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/Operation.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

/**
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/OperationRegistry.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/OperationRegistry.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/OperationRegistry.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_OPERATIONREGISTRY_H
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/Request.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_REQUEST_H
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/RequestCallbacks.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_REQUESTCALLBACKS_H
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/RequestQueue.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/RequestQueue.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/RequestQueue.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_REQUESTQUEUE_H
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Core/RequestQueueStorageStrategy.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef REQUESTQUEUESTORAGESTRATEGY_H
#define REQUESTQUEUESTORAGESTRATEGY_H
#ifndef MO_REQUESTQUEUESTORAGESTRATEGY_H
#define MO_REQUESTQUEUESTORAGESTRATEGY_H

#include <MicroOcpp/Core/RequestStore.h>

Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/RequestStore.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/RequestStore.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/RequestStore.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_REQUESTSTORE_H
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/SimpleRequestFactory.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/SimpleRequestFactory.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/SimpleRequestFactory.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_SIMPLEREQUESTFACTORY_H
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/Time.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Core/Time.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Core/Time.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_TIME_H
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Model/Authorization/AuthorizationData.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Model/Authorization/AuthorizationData.h>
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Model/Authorization/AuthorizationData.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef AUTHORIZATIONDATA_H
#define AUTHORIZATIONDATA_H
#ifndef MO_AUTHORIZATIONDATA_H
#define MO_AUTHORIZATIONDATA_H

#include <MicroOcpp/Operations/CiStrings.h>
#include <MicroOcpp/Core/Time.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Model/Authorization/AuthorizationList.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Model/Authorization/AuthorizationList.h>
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Model/Authorization/AuthorizationList.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef AUTHORIZATIONLIST_H
#define AUTHORIZATIONLIST_H
#ifndef MO_AUTHORIZATIONLIST_H
#define MO_AUTHORIZATIONLIST_H

#include <MicroOcpp/Model/Authorization/AuthorizationData.h>
#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Model/Authorization/AuthorizationService.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <MicroOcpp/Model/Authorization/AuthorizationService.h>
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Model/Authorization/AuthorizationService.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef AUTHORIZATIONSERVICE_H
#define AUTHORIZATIONSERVICE_H
#ifndef MO_AUTHORIZATIONSERVICE_H
#define MO_AUTHORIZATIONSERVICE_H

#include <MicroOcpp/Model/Authorization/AuthorizationList.h>
#include <MicroOcpp/Core/FilesystemAdapter.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Model/Boot/BootService.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#include <limits>
Expand Down
6 changes: 3 additions & 3 deletions src/MicroOcpp/Model/Boot/BootService.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef BOOTSERVICE_H
#define BOOTSERVICE_H
#ifndef MO_BOOTSERVICE_H
#define MO_BOOTSERVICE_H

#include <MicroOcpp/Core/ConfigurationKeyValue.h>
#include <MicroOcpp/Core/FilesystemAdapter.h>
Expand Down
2 changes: 1 addition & 1 deletion src/MicroOcpp/Model/ConnectorBase/ChargePointErrorData.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// matth-x/MicroOcpp
// Copyright Matthias Akstaller 2019 - 2023
// Copyright Matthias Akstaller 2019 - 2024
// MIT License

#ifndef MO_CHARGEPOINTERRORCODE_H
Expand Down
Loading

0 comments on commit 8fa0258

Please sign in to comment.