diff options
author | David Madison <dmadison@users.noreply.github.com> | 2019-03-09 15:51:24 -0500 |
---|---|---|
committer | David Madison <dmadison@users.noreply.github.com> | 2019-03-09 15:51:24 -0500 |
commit | 971b3bb74113fc1bcd52122ba167849bded8ad99 (patch) | |
tree | 1f059ee467151ca4fd60a2224ae9c25649b53b78 /cores/arduino/xinput/USB_XInput_API.h | |
parent | 14f191ed94534fcde7db0b859231fbde93192e3a (diff) |
Moved send above recv in Xinput API header
Logical reordering, no functional change
Diffstat (limited to 'cores/arduino/xinput/USB_XInput_API.h')
-rw-r--r-- | cores/arduino/xinput/USB_XInput_API.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/xinput/USB_XInput_API.h b/cores/arduino/xinput/USB_XInput_API.h index 0a8fa43..9f2e686 100644 --- a/cores/arduino/xinput/USB_XInput_API.h +++ b/cores/arduino/xinput/USB_XInput_API.h @@ -38,8 +38,8 @@ public: // API static bool connected(void); static int available(void); - static int recv(void *buffer, uint8_t nbytes); static int send(const void *buffer, uint8_t nbytes); + static int recv(void *buffer, uint8_t nbytes); static void setRecvCallback(void(*callback)(void)); // Non-API Data |