STM8 用printf代替uart方法
#ifdef__GNUC__
#definePUTCHAR_PROTOTYPEint__io_putchar(intch)
#else
#definePUTCHAR_PROTOTYPEintfputc(intch,FILE*f)
#endif
PUTCHAR_PROTOTYPE
{
//發(fā)送數(shù)據(jù)代碼
returnch;
}
出現(xiàn)identifier "FILE" is undefined,工程option中,如下選折:
需要在 IAR的Options -> General Options ->Library Configuration里設(shè)置一下函數(shù)庫,不然printf函數(shù)不對(duì),將Library Configuration 中的Library 設(shè)置由"Normal"改為"Full"就可以了。
評(píng)論