例如下面这个代码,我需要将buff传到函数里面去处理,为了对比第一个字符是不是特定的字符,第一个字符是一个标记
const char buf[5] = {'1', '2', '3', '4', '5'};
void getChar(const char *args)
{
while (true)
{
ESP_LOGI("MSG", "%s", args);
vTaskDelay(200 / portTICK_RATE_MS);
}
}