-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg/cryptoauthlib: Update package to latest version
- Loading branch information
Lena Boeckmann
committed
Jul 6, 2022
1 parent
31b8518
commit 422d81a
Showing
17 changed files
with
238 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright (C) 2022 HAW Hamburg | ||
* | ||
* This file is subject to the terms and conditions of the GNU Lesser | ||
* General Public License v2.1. See the file LICENSE in the top level | ||
* directory for more details. | ||
*/ | ||
|
||
/** | ||
* @ingroup pkg_cryptoauthlib | ||
* @{ | ||
* | ||
* @file | ||
* @brief Minimal configuration for the library build. | ||
* For documentation please see https://github.com/MicrochipTech/cryptoauthlib#readme | ||
* | ||
* @author Lena Boeckmann <lena.boeckmann@haw-hamburg.de> | ||
* | ||
*/ | ||
|
||
#ifndef ATCA_CONFIG_H | ||
#define ATCA_CONFIG_H | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
/** | ||
* @brief ATECC508A device support | ||
*/ | ||
#define ATCA_ATECC508A_SUPPORT | ||
|
||
/** | ||
* @brief ATECC608A device support | ||
*/ | ||
#define ATCA_ATECC608A_SUPPORT | ||
|
||
/** | ||
* @brief Map atca delay function to hal delay ms implementation | ||
*/ | ||
#define atca_delay_ms hal_delay_ms | ||
|
||
/** | ||
* @brief Map atca delay function to hal delay us implementation | ||
*/ | ||
#define atca_delay_us hal_delay_us | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif /* ATCA_CONFIG_H */ | ||
/** @} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.