diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-01-26 22:15:53 -0500 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-01-26 22:15:53 -0500 |
commit | b2dbc4feeb48697fbbdbb7740b6db552a45b3c02 (patch) | |
tree | e9fa901e99ab625df0df5e168f3175ffdd14732e | |
parent | a11275d84c4ca04645eec72b1d1612d0781e0486 (diff) | |
download | Sensor-Watch-b2dbc4feeb48697fbbdbb7740b6db552a45b3c02.tar.gz Sensor-Watch-b2dbc4feeb48697fbbdbb7740b6db552a45b3c02.tar.bz2 Sensor-Watch-b2dbc4feeb48697fbbdbb7740b6db552a45b3c02.zip |
silence compiler warning
-rwxr-xr-x | watch-library/hardware/hal/src/hal_usart_sync.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/watch-library/hardware/hal/src/hal_usart_sync.c b/watch-library/hardware/hal/src/hal_usart_sync.c index ab99c1d1..c7aaf920 100755 --- a/watch-library/hardware/hal/src/hal_usart_sync.c +++ b/watch-library/hardware/hal/src/hal_usart_sync.c @@ -48,6 +48,7 @@ static int32_t usart_sync_read(struct io_descriptor *const io_descr, uint8_t *co */ int32_t usart_sync_init(struct usart_sync_descriptor *const descr, void *const hw, void *const func) { + (void)func; int32_t init_status; ASSERT(descr && hw); init_status = _usart_sync_init(&descr->device, hw); |