mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-16 01:53:51 +01:00
27 lines
417 B
C
27 lines
417 B
C
/*
|
|
* 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 <koen@bergzand.net>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
puts("RIOT USB stack example application");
|
|
|
|
puts("Started USB stack!");
|
|
return 0;
|
|
}
|