diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-25 20:53:54 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-25 20:53:54 +0100 |
commit | 58a1b4c6cf8b9675c56e9eebd0f620ec7b66d83f (patch) | |
tree | eaa73f9969018ee88f5c013f63936c9665ecdcdd /stm/printf.c | |
parent | 2839168340b5ac9f947c01b42f7ddf960da81aa6 (diff) | |
download | micropython-58a1b4c6cf8b9675c56e9eebd0f620ec7b66d83f.tar.gz micropython-58a1b4c6cf8b9675c56e9eebd0f620ec7b66d83f.zip |
Add USB HID support. Runs as an alternative to VCP+MSC.
Diffstat (limited to 'stm/printf.c')
-rw-r--r-- | stm/printf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stm/printf.c b/stm/printf.c index 3ccdd7084b..4c178b94be 100644 --- a/stm/printf.c +++ b/stm/printf.c @@ -1,3 +1,4 @@ +#include <stdint.h> #include <stdarg.h> #include "std.h" #include "misc.h" |