User Activity

I am trying to communicate with CAN, but it seems that I am not receiving Rx. I would like to know the reason for this static void MX_CAN2_Init(void) { /* USER CODE BEGIN CAN2_Init 0 */ /* USER CODE END CAN2_Init 0 */ /* USER CODE BEGIN CAN2...
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...