整形转字符,stm32不支持标准的itoa,这里自己实现char *myitoa(int value, char *string, int radix){ int i, d; int flag = 0; char *ptr = string; ...
確定! 回上一頁