mirror of
https://github.com/DashyFox/StackSport.git
synced 2025-05-04 07:10:17 +00:00
13 lines
401 B
C
13 lines
401 B
C
#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);
|
|
void printHexBuffer(uint8_t *buffer, uint16_t size);
|