Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add build configuration file for ECCX08 #404

Merged
merged 1 commit into from
Feb 19, 2024
Merged
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/AIoTC_Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
#ifndef ARDUINO_AIOTC_CONFIG_H_
#define ARDUINO_AIOTC_CONFIG_H_

#include <ArduinoECCX08Config.h>

/******************************************************************************
* USER CONFIGURABLE DEFINES
******************************************************************************/
Expand Down
27 changes: 27 additions & 0 deletions src/ArduinoECCX08Config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
This file is part of ArduinoIoTCloud.

Copyright 2020 ARDUINO SA (http://www.arduino.cc/)

This software is released under the GNU General Public License version 3,
which covers the main part of arduino-cli.
The terms of this license can be found at:
https://www.gnu.org/licenses/gpl-3.0.en.html

You can be released from the requirements of the above licenses by purchasing
a commercial license. Buying such a license is mandatory if you want to modify or
otherwise use the software for commercial activities involving the Arduino
software without disclosing the source code of your own applications. To purchase
a commercial license, send an email to [email protected].
*/

#ifndef ARDUINO_ECCX08_CONFIG_H
#define ARDUINO_ECCX08_CONFIG_H

#define ECCX08_DISABLE_ASN1
#define ECCX08_DISABLE_CSR
#define ECCX08_DISABLE_JWS
#define ECCX08_DISABLE_SSC
#define ECCX08_DISABLE_PEM

#endif /* ARDUINO_ECCX08_CONFIG_H */
Loading