User Activity

In the code below I send 2 bytes with my STM32 (I've chosen a number higher then 255 (340) so it needs to send the data in 2 bytes) but on the scope I cant find this data. I guess it's because of the wide clockpulse and the Rpi expect an ACK. Instead...
I am able to send & receive 1 integer over the I²c bus but I'm stuck how I can send more integers in 1 commando. Can someone help me please?#include "main.h" #include "string.h" #include "stdio.h"   I2C_HandleTypeDef hi2c1; UART_HandleTypeDef huart2;...
#include "main.h" #include "string.h" #include "stdio.h"   I2C_HandleTypeDef hi2c1; UART_HandleTypeDef huart2; void SystemClock_Config(void); static void MX_GPIO_Init(void); static void MX_USART2_UART_Init(void); static void MX_I2C1_Init(void);   int...
I think i correctly setted up the slave adress on 0x70 with the configuration window.Below my script on the Raspberry Pi. #include "main.h" #include "string.h" #include "stdio.h"       I2C_HandleTypeDef hi2c1;   UART_HandleTypeDef huart2;     void Sy...