firstTest

This commit is contained in:
2024-08-20 22:26:27 +03:00
parent eefbc336fa
commit 2c2ebd7137
15 changed files with 930 additions and 25 deletions

11
Core/Inc/Print.h Normal file
View File

@ -0,0 +1,11 @@
#include "usbd_cdc_if.h"
#include <stdio.h> // Для функции sprintf
#include <stdint.h>
#include <string.h> // Для функции strlen
#define BUFFER_SIZE 32 // Размер буфера для строки
void print(char* str);
void int_to_str(int number, char *str, int base);
void printNumber(long int number);