usbus/hid: uncrustify files

This commit is contained in:
Ollrogge 2021-08-03 17:46:43 +02:00
parent 834ac3f5a5
commit 2c2eb88c0e
3 changed files with 46 additions and 45 deletions

View File

@ -34,7 +34,7 @@ extern "C" {
/**
* @brief USBUS HID IO RX callback function
*/
typedef void (*usb_hid_io_cb_t)(void*);
typedef void (*usb_hid_io_cb_t)(void *);
/**
* @brief Set USBUS HID IO RX callback

View File

@ -52,8 +52,9 @@ static usbus_t usbus;
static char _stack[USBUS_STACKSIZE];
static char test_arg[] = { "Test argument" };
static void rx_cb(void* arg) {
printf("USB_HID rx_cb: %s \n", (char*)arg);
static void rx_cb(void *arg)
{
printf("USB_HID rx_cb: %s \n", (char *)arg);
}
static void init(void)