/* * SPDX-FileCopyrightText: 2019 Koen Zandberg * SPDX-License-Identifier: LGPL-2.1-only */ /** * @ingroup examples * @{ * * @file * @brief Example application for demonstrating the RIOT USB stack * * @author Koen Zandberg * * @} */ #include int main(void) { puts("RIOT USB stack example application"); puts("Started USB stack!"); return 0; }