Improve code

This commit is contained in:
Mario Hüttel 2020-02-12 21:08:05 +01:00
parent bb898adfac
commit 29fed8328c
1 changed files with 5 additions and 3 deletions

View File

@ -116,10 +116,12 @@ static shellmatta_retCode_t shell_cmd_pt1000_res(const shellmatta_handle_t han
return SHELLMATTA_OK; return SHELLMATTA_OK;
} }
static shellmatta_retCode_t shell_cmd_clear_error_status(const shellmatta_handle_t handle, static shellmatta_retCode_t shell_cmd_clear_error_status(const shellmatta_handle_t handle, const char *arguments,
const char *arguments, uint32_t length)
uint32_t length)
{ {
(void)arguments;
(void)length;
adc_pt1000_clear_error(); adc_pt1000_clear_error();
return SHELLMATTA_OK; return SHELLMATTA_OK;