gpt4 book ai didi

c - uint8_t 数组和附加数据

转载 作者:行者123 更新时间:2023-11-30 19:36:48 24 4
gpt4 key购买 nike

大家好,我有这个问题,我有一个 uint8_t 数组

uint8_t command_Text[256]

我从adc读取了一些数据,我使用snprintf将数据转换为uint8_t

` float aux;
uint8_t value[4];
aux=(float)(HAL_ADC_GetValue(&hadc))
snprintf(value,4,"%.0f",aux); //convert the data float to uint8_t
strcat(command_Text, value); //append data `

我看到“uint8_t *”类型的警告参数与“char const *”类型的参数不兼容我不知道如何操作 uint_8 数据中的字符串,我想读取数据 e 将其附加到数组中,你能帮我吗?

最佳答案

建议类似:

uint8_t command_Text[256] = {'\0'};
....
uint8_t value[4] = {'\0'};
snprintf(value,3,"%3.3u", atoi( HAL_ADC_GetValue( &hadc ) ) );
strcat(command_Text, value); //append data

关于c - uint8_t 数组和附加数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40453762/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com