diff options
| author | hathach <[email protected]> | 2020-09-04 01:32:30 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2020-09-04 01:32:30 +0700 |
| commit | 5fb3d439b3e415bae5edbc556ea20f7211ac4bb5 (patch) | |
| tree | 44528862f7f4f37bd648579aba1a2e606970bbc3 /examples | |
| parent | 865ebf7c5db98ccc3f8f5f4fead9d8bba0e57c18 (diff) | |
update ci to also build host example
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/host/cdc_msc_hid/.only.MCU_LPC175X_6X | 0 | ||||
| -rw-r--r-- | examples/host/cdc_msc_hid/.only.MCU_LPC177X_8X | 0 | ||||
| -rw-r--r-- | examples/host/cdc_msc_hid/.only.MCU_LPC18XX | 0 | ||||
| -rw-r--r-- | examples/host/cdc_msc_hid/.only.MCU_LPC40XX | 0 | ||||
| -rw-r--r-- | examples/host/cdc_msc_hid/.only.MCU_LPC43XX | 0 | ||||
| -rw-r--r-- | examples/host/cdc_msc_hid/src/main.c | 5 |
6 files changed, 4 insertions, 1 deletions
diff --git a/examples/host/cdc_msc_hid/.only.MCU_LPC175X_6X b/examples/host/cdc_msc_hid/.only.MCU_LPC175X_6X new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/examples/host/cdc_msc_hid/.only.MCU_LPC175X_6X diff --git a/examples/host/cdc_msc_hid/.only.MCU_LPC177X_8X b/examples/host/cdc_msc_hid/.only.MCU_LPC177X_8X new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/examples/host/cdc_msc_hid/.only.MCU_LPC177X_8X diff --git a/examples/host/cdc_msc_hid/.only.MCU_LPC18XX b/examples/host/cdc_msc_hid/.only.MCU_LPC18XX new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/examples/host/cdc_msc_hid/.only.MCU_LPC18XX diff --git a/examples/host/cdc_msc_hid/.only.MCU_LPC40XX b/examples/host/cdc_msc_hid/.only.MCU_LPC40XX new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/examples/host/cdc_msc_hid/.only.MCU_LPC40XX diff --git a/examples/host/cdc_msc_hid/.only.MCU_LPC43XX b/examples/host/cdc_msc_hid/.only.MCU_LPC43XX new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/examples/host/cdc_msc_hid/.only.MCU_LPC43XX diff --git a/examples/host/cdc_msc_hid/src/main.c b/examples/host/cdc_msc_hid/src/main.c index 34503499f..4200cc5e0 100644 --- a/examples/host/cdc_msc_hid/src/main.c +++ b/examples/host/cdc_msc_hid/src/main.c @@ -185,7 +185,8 @@ void tuh_hid_keyboard_unmounted_cb(uint8_t dev_addr) // invoked ISR context void tuh_hid_keyboard_isr(uint8_t dev_addr, xfer_result_t event) { - + (void) dev_addr; + (void) event; } #endif @@ -206,6 +207,8 @@ void tuh_hid_mouse_unmounted_cb(uint8_t dev_addr) // invoked ISR context void tuh_hid_mouse_isr(uint8_t dev_addr, xfer_result_t event) { + (void) dev_addr; + (void) event; } #endif |
