mirror of
https://github.com/eddyem/stm32samples.git
synced 2025-12-06 02:35:23 +03:00
14 lines
423 B
C
14 lines
423 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
void hexdump(int (*sendfun)(const char *s), uint8_t *arr, uint16_t len);
|
|
const char *u2str(uint32_t val);
|
|
const char *i2str(int32_t i);
|
|
const char *uhex2str(uint32_t val);
|
|
const char *getnum(const char *txt, uint32_t *N);
|
|
const char *omit_spaces(const char *buf);
|
|
const char *getint(const char *txt, int32_t *I);
|
|
//void mymemcpy(char *dest, const char *src, int len);
|