-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,7 @@ void cdc_shell_init() { | |
void cdc_shell_exit() { | ||
|
||
} | ||
|
||
void cdc_shell_write(const void *buf, size_t count) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
#ifndef CDC_SHELL_H | ||
#define CDC_SHELL_H | ||
|
||
#include <stddef.h> | ||
|
||
#define USB_SHELL_MAX_CMD_LINE_SIZE 0x100 | ||
|
||
void cdc_shell_init(); | ||
void cdc_shell_exit(); | ||
void cdc_shell_write(const void *buf, size_t count); | ||
|
||
#endif /* CDC_SHELL_H */ |