增加BDW01-STM32L496VG开发板

This commit is contained in:
sunlikun
2020-11-18 18:05:05 +08:00
parent 65e5b9fe84
commit abcf43d131
199 changed files with 50338 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#ifndef __MYMATH_H
#define __MYMATH_H
void Ascii_to_hex_char(char *dstbuf,char*rstbuf);
void HexStrToByte(const char* source, unsigned char* dest, int sourceLen);
void ByteToHexStr(const unsigned char* source, char* dest, int sourceLen);
void Hex2Str( const char *sSrc, char *sDest, int nSrcLen );
int Myatoi(char *buf);
char * Myitoa(int val);
int str_to_hex(char *string, unsigned char *cbuf, int len);
void hex_to_str(char *ptr,unsigned char *buf,int len);
#endif