mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
53 lines
1.0 KiB
C
53 lines
1.0 KiB
C
/*
|
|
* 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 */
|
|
/** @} */
|