I'm using the uVision2 Debugger and I'm assigning my serial port to COM1 using the ASSIGN command: ASSIGN COM1 <S0IN >S0OUT I connect COM1 to an external hardware device that receive the data sends. Why the external hardware don't receive data?
Hi! Yes: MODE COM1 300, 0, 8, 1 /*9600 bps, no parity, 8 data & 1 stop bit*/ ASSIGN COM1 <S0IN >S0OUT /*ASC0 output & input is done with COM1:*/ S0TIME = 1 /*ignore timing of simulated ASC0 interface*/ I've copy this from 'uVision2 Getting Started'.
YUPPIDU OK