EEPROM and USB CDC

This commit is contained in:
2024-09-11 00:32:41 +03:00
parent beb5ed6be3
commit 419c55d807
8 changed files with 336 additions and 225 deletions

View File

@ -13,7 +13,6 @@ void print(char* str){
size++;
}
CDC_Transmit_FS((unsigned char*)str, size);
HAL_Delay(1);
}
void int_to_str(int number, char *str, int base)
@ -56,5 +55,4 @@ void printNumber(long int number)
// Отправка строки через USB CDC
CDC_Transmit_FS((uint8_t*)buffer, strlen(buffer));
HAL_Delay(1);
}