想用UART 把调试的过程在超级终端show出来,并做了一个简单的例程
下面的例程里面 只能show 这个指令的内容TX8_PutSHexInt(1234);
不能显示这个指令的内容 CYFISNP_OutStr("<RestartBind>");
波特率是38400, 有没有好的建议 ??
#include <m8c.h> // part specific constants and macros
#include "PSoCAPI.h" // PSoC API definitions for all User Modules
#include "CYFISNP_protocol.h"
#define CYFISNP_DEBUG
void main()
{
// Insert your main routine code here.
M8C_EnableGInt;
TX8_Start(TX8_PARITY_NONE);
while(1)
{
CYFISNP_OutStr("<RestartBind>");
TX8_PutSHexInt(1234);
while( !( TX8_bReadTxStatus() & TX8_TX_BUFFER_EMPTY ) );
}
} |