summaryrefslogtreecommitdiff
path: root/examples/obsolete/host/src/msc_cli.h
diff options
context:
space:
mode:
authormajbthrd <[email protected]>2021-02-25 09:15:42 -0600
committerGitHub <[email protected]>2021-02-25 09:15:42 -0600
commitefea18a888098b779efc9edbd99335f58d0c2074 (patch)
treea9e52a183d4f37ffa0a024c825cd78a1475b32d3 /examples/obsolete/host/src/msc_cli.h
parentc5422a5c48984f4ea2a5fb6b22f6778183002f68 (diff)
parent50a0bddd8b5f394215bdf36ac5b17a7386a77e3d (diff)
Merge branch 'master' into rp2040epaddr
Diffstat (limited to 'examples/obsolete/host/src/msc_cli.h')
-rw-r--r--examples/obsolete/host/src/msc_cli.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/examples/obsolete/host/src/msc_cli.h b/examples/obsolete/host/src/msc_cli.h
deleted file mode 100644
index de90bebd1..000000000
--- a/examples/obsolete/host/src/msc_cli.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * The MIT License (MIT)
- *
- * Copyright (c) 2019 Ha Thach (tinyusb.org)
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- * This file is part of the TinyUSB stack.
- */
-#ifndef _TUSB_MSC_CLI_H_
-#define _TUSB_MSC_CLI_H_
-
-#include "board.h"
-#include "tusb.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-//--------------------------------------------------------------------+
-// PUBLIC API
-//--------------------------------------------------------------------+
-void cli_init(void);
-void cli_poll(char ch);
-
-//--------------------------------------------------------------------+
-// Callback API
-//--------------------------------------------------------------------+
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // _TUSB_CLI_H_