问题一:
假如
STM32作为从机,那么接收到的地址之后,是不是通过软件判断TRA位来确定是要发送还是接收?
问题二:
Bus error(BERR),有一句话:In Master mode: the lines are not released and the state of the current transmission is not affected. It is up to the software to abort or not the current transmission.
上面这句话的意思是不是说要不要中断这次传送,是由主机是否要发“STOP”信号来决定的?因为我在手册中没看到有什么寄存器来决定这个,所以只有猜想是STOP信号了。
问题三:
假如STM32作为从机的时候,因为从机没有接收到START信号的中断,那么是不是意味着,从机在接收到start信号之后可以不做处理,只要接下来的接收到的数据与自身的地址匹配,这样也就触发了”地址匹配中断“,这个时候再决定是否要接收数据还是发送数据么?
问题四:
STOP : Stop genera
tion
The bit is set and cleared by software,
cleared by hardware when a Stop condition is
detected, set by hardware when a timeout error is detected.
In Master Mode:
0: No Stop generation.
1: Stop generation after the current byte transfer or after the current Start condition is sent.
In Slave mode:
0: No Stop generation.
1: Release the SCL and SDA lines after the current byte transfer
手册中没有说明STM32作为主机的时候,置位STOP位后,这一位是自动清零的还是需要软件清零。
从理论上感觉应该是硬件自动清零,不知道上面说
cleared by hardware when a Stop condition is
detected是不是也包括了自身发送的STOP信号。