Compare commits

..

No commits in common. "c9127b95adf33c7ec0e01a82e499eeaab8968d02" and "5c4552ccdebb6aa5cacc5b1f45cedb331a3bcdb4" have entirely different histories.

5 changed files with 9 additions and 6 deletions

View File

@ -24,4 +24,5 @@ char *trim(char *s);
int strtotime (char *s, struct _tm_ *tp); int strtotime (char *s, struct _tm_ *tp);
// uint8_t dayofweek(uint8_t century, uint8_t y, uint8_t m, uint8_t d); // uint8_t dayofweek(uint8_t century, uint8_t y, uint8_t m, uint8_t d);
#endif /* INC_HELPER_H_ */ #endif /* INC_HELPER_H_ */

View File

@ -10,4 +10,6 @@
void ringbuf_test(void); void ringbuf_test(void);
#endif /* INC_RINGBUF_TEST_H_ */ #endif /* INC_RINGBUF_TEST_H_ */

View File

@ -141,13 +141,13 @@ static int si5351_error_status_i2c(HAL_StatusTypeDef status) {
switch (status) { switch (status) {
case HAL_TIMEOUT: case HAL_TIMEOUT:
return -ETIMEDOUT; return -ETIMEDOUT;
//break; break;
case HAL_ERROR: case HAL_ERROR:
return -EIO; return -EIO;
//break; break;
case HAL_BUSY: case HAL_BUSY:
return -EBUSY; return -EBUSY;
//break; break;
case HAL_OK: case HAL_OK:
default: default:
return 0; return 0;