Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/MicroOcpp/Core/ConfigurationOptions.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,6 +5,8 @@
#ifndef MO_CONFIGURATIONOPTIONS_H
#define MO_CONFIGURATIONOPTIONS_H

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#ifdef __cplusplus
Expand Down
1 change: 1 addition & 0 deletions src/MicroOcpp/Core/Configuration_c.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,6 +5,7 @@
#ifndef MO_CONFIGURATION_C_H
#define MO_CONFIGURATION_C_H

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

Expand Down
2 changes: 2 additions & 0 deletions src/MicroOcpp/Model/Certificates/Certificate.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,7 +9,9 @@

#if MO_ENABLE_CERT_MGMT

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#ifdef __cplusplus
extern "C" {
Expand Down
4 changes: 4 additions & 0 deletions src/MicroOcpp/Model/Certificates/CertificateMbedTLS.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,6 +9,10 @@
* Built-in implementation of the Certificate interface for MbedTLS
*/

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#include <MicroOcpp/Version.h>
#include <MicroOcpp/Platform.h>

Expand Down
2 changes: 2 additions & 0 deletions src/MicroOcpp/Model/Certificates/Certificate_c.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,7 +9,9 @@

#if MO_ENABLE_CERT_MGMT

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#include <MicroOcpp/Model/Certificates/Certificate.h>

Expand Down
4 changes: 4 additions & 0 deletions src/MicroOcpp/Model/Transactions/Transaction.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,6 +5,10 @@
#ifndef TRANSACTION_H
#define TRANSACTION_H

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#include <MicroOcpp/Version.h>

/* General Tx defs */
Expand Down
2 changes: 2 additions & 0 deletions src/MicroOcpp_c.h
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,7 +5,9 @@
#ifndef MO_MICROOCPP_C_H
#define MO_MICROOCPP_C_H

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#include <MicroOcpp/Core/ConfigurationOptions.h>
#include <MicroOcpp/Model/ConnectorBase/ChargePointStatus.h>
Expand Down