diff options
author | NicoHood <NicoHood@users.noreply.github.com> | 2015-08-07 19:39:06 +0200 |
---|---|---|
committer | NicoHood <NicoHood@users.noreply.github.com> | 2015-08-12 17:48:17 +0200 |
commit | 77cc20f11904cb46b509f69ad9e856b5ad9eb253 (patch) | |
tree | bd7879232431563214ff9041888329e51dd3b9a2 /cores/arduino/USBCore.cpp | |
parent | deb59fd6054ce105487bd107dec014fab116cc3a (diff) |
Added missing static inline to USB Recv function
Diffstat (limited to 'cores/arduino/USBCore.cpp')
-rw-r--r-- | cores/arduino/USBCore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/USBCore.cpp b/cores/arduino/USBCore.cpp index 8237ccb..05e2f24 100644 --- a/cores/arduino/USBCore.cpp +++ b/cores/arduino/USBCore.cpp @@ -110,7 +110,7 @@ static inline void ClearOUT(void) UEINTX = ~(1<<RXOUTI); } -void Recv(volatile u8* data, u8 count) +static inline void Recv(volatile u8* data, u8 count) { while (count--) *data++ = UEDATX; |