User Activity

Hello, I am using STUSB4500 Type C IC , I want to set the profile for 5V 3A.I referred the code given in Github:https://github.com/usb-c/STUSB4500Same we have implemented in nrf52832 SDK, but its not getting programmed.Any solution for this? How we ...
#include "stm8s.h"#define I2C_PORT   (GPIOB)#define SDA_pin   (GPIO_PIN_5)#define SCL_pin   (GPIO_PIN_4)#define SLAVE_ADDRESS 0x60#define I2C_OWN_ADDRESS 0x00static void CLK_Config(void);void I2C_init(void);void I2C_Write(uint8_t I2C_Slave_Address,ui...