rename si5351 driver, remove external files

This commit is contained in:
2022-07-16 20:39:01 +02:00
parent 152ccf00e4
commit c35afd9bf8
12 changed files with 2532 additions and 2530 deletions

View File

@ -2666,7 +2666,7 @@ uint8_t RTC_ByteToBcd2(uint8_t Value)
while (temp >= 10U)
{
bcdhigh++;
temp -= 10U;
temp -= 10;
}
return ((uint8_t)(bcdhigh << 4U) | temp);