//MASTER
while (1)
{
/* USER CODE END WHILE */
ret = HAL_I2C_Master_Transmit(&hi2c1, peripheralNucleoAddress << 1, bufferTx, 1, HAL_MAX_DELAY);
if (ret != HAL_OK)
{
strcpy((char*) bufferTx, "Tx");
HAL_UART_Transmit(&huart2, b...
Hello, I have written a code for I2C to act between two Nucleo boards, however, at the moment, the master board is not even giving me a signal output. I looked at the output using a Saleae Logic Analyzer and there isn't even a clock signal comin out ...
Hello, I just started using the Nucleo board and currently I am trying to connect two Nucleo G071RB by using I2C, using one as a Master and another one as a Slave.I, however, am not able to even get a clock signal coming from the Master (measured usi...
So after I couldn't make it work like that I did end up following your tip from my previous post and tried making only the Master Receive work. However, I still had no luck as my clock line for some reason gets pulled low when I add a second board ev...
I apologize for the lack of details. I am using a Nucleo G071RB board for both my Master and Slave boards. I posted my code in another post, but will include some specificities here. Regarding the tutorial link posted, I had seen it, and when I try m...