diff options
-rw-r--r-- | stm-rtc.c | 2 | ||||
-rw-r--r-- | stm-uart.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -60,7 +60,7 @@ HAL_StatusTypeDef rtc_enable_oscillator() return HAL_OK; } -HAL_StatusTypeDef rtc_send_byte(const uint16_t i2c_addr, const uint8_t value, const uint16_t timeout) +HAL_StatusTypeDef rtc_send_byte(const uint16_t i2c_addr, uint8_t value, const uint16_t timeout) { HAL_StatusTypeDef res; @@ -187,4 +187,6 @@ HAL_StatusTypeDef uart_send_hexdump(enum stm_uart_port port, const uint8_t *buf, uart_send_number2(port, *(buf + i), 2, 16); uart_send_string2(port, " "); } + + return HAL_OK; } |