研究生
最后登录1970-1-1
在线时间 小时
注册时间2014-8-12
|
最近在学习串行口编程,看到了USART1_printf这个例子,在usart1.c这个文件里面报了两个错误!
分析了老半天,也不知道哪里处理错误,然后在keil里面找到了stdarg.h这个函数,里面有一段话,这样说,
If type is a narrow type, an error is given in strict ANSI mode, or a warning otherwise. If the type is an array or function type,
an error is given.后来把
s = va_arg(ap, const char *);
改成了
s=va_arg(ap, const wchar_t *);还是不行啊,最后无语了,只能说狗娘养的keil! |
|