User Activity

I am setting up SDLC communication using the Z85C30 chip. However, when I enable Tx and send data, it appears that the data is mixed with 7E. After the Tx is finished, I disable it. Is there a way to ensure that 7E appears only at the start and end?
I encountered a problem when trying to send more than 5 bytes of data using the FMC. // impossible example -- #define SD_DATA (*(volatile unsigned char *)0x60000001) SD_DATA = 0x01; SD_DATA = 0x02; SD_DATA = 0x03;   Using this method, data i...