Skip to content

Add function to rebuild ArduinoCloud device certificate #21

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

Merged
merged 13 commits into from
Jan 22, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Use Arduino_DebugUtils if already included in the build
  • Loading branch information
pennam committed Jan 10, 2025
commit 708376e041d69b3fced749c20737277fc62da6f8
26 changes: 26 additions & 0 deletions src/SecureElementConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,30 @@
#define SECURE_ELEMENT_IS_SOFTSE
#endif

#if defined __has_include
#if __has_include (<Arduino_DebugUtils.h>)
#include <Arduino_DebugUtils.h>
#endif
#endif

#ifndef DEBUG_ERROR
#define DEBUG_ERROR(fmt, ...)
#endif

#ifndef DEBUG_WARNING
#define DEBUG_WARNING(fmt, ...)
#endif

#ifndef DEBUG_INFO
#define DEBUG_INFO(fmt, ...)
#endif

#ifndef DEBUG_DEBUG
#define DEBUG_DEBUG(fmt, ...)
#endif

#ifndef DEBUG_VERBOSE
#define DEBUG_VERBOSE(fmt, ...)
#endif

#endif /* SECURE_ELEMENT_CONFIG_H_ */