mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 09:33:50 +01:00
29 lines
632 B
C
29 lines
632 B
C
/*
|
|
* SPDX-FileCopyrightText: 2022 Freie Universität Berlin
|
|
* SPDX-License-Identifier: LGPL-2.1-only
|
|
*/
|
|
|
|
/**
|
|
* @ingroup tests
|
|
* @{
|
|
* @file
|
|
* @brief FIDO2 CTAP test application that creates an authenticator
|
|
* which uses CTAPHID as underlying communication protocol
|
|
*
|
|
* @author Nils Ollrogge <nils.ollrogge@mailbox.tu-dresden.de>
|
|
* @}
|
|
*/
|
|
#define ENABLE_DEBUG (0)
|
|
#include "debug.h"
|
|
|
|
#include "ztimer.h"
|
|
|
|
#include "fido2/ctap/transport/ctap_transport.h"
|
|
|
|
int main(void)
|
|
{
|
|
/* sleep in order to see early DEBUG outputs */
|
|
ztimer_sleep(ZTIMER_MSEC, 3000);
|
|
fido2_ctap_transport_init();
|
|
}
|