I need to simply add VL53L0x API STSW-IMG005 to my project without any compilation errors. And need to know the necessary functions to get the distance.Regard
I am stuck with a really weird issue while using time of flight sensor VL53L0x - 200 cm andVL6180x - 60 cm. I have two st boards, STM32F446 Nucleo and STM32F767 Nucleo. I have written the libraries for both the time of flight sensors on STM32F767 Nuc...
Posted on June 19, 2018 at 12:26
I am using STM32F103RCT6 to blink a LED which is connected to PA15 - JTDI in PU.
My GPIO Configuration is like this
GPIOA->CRH |= GPIO_CRH_MODE15; //Output mode, max speed 50 MHz. GPIOA->CRH &= ~GPIO_CRH_CNF...
Posted on June 16, 2018 at 16:22The original post was too long to process during our migration. Please click on the attachment to read the original post.
Thanks John for your reply. I need to know which files needs to add in the Code,along with platform.c . Cause their is a file called "vl53l0x_i2c_win_serial_comms", I don't think i need to add this file in my code right ?? Then their is this file "vl...
I guess this is for VL53L1x 400 cm ToF. I have already used and implemented VL53L1x using the following method provided by digikey. Here is the link https://www.digikey.com/eewiki/display/microcontroller/Adding+the+VL53L1X+Driver+to+an+STM32Cube+Proj...
From this particular part of theHAL_I2C_Master_Transmit()function returnsHAL_ERRORif(I2C_MasterRequestWrite(hi2c, DevAddress, Timeout, tickstart) != HAL_OK)
{
if(hi2c->ErrorCode == HAL_I2C_ERROR_AF)
{
/* Process Unlocked */
__HAL_UNLOCK(h...
I have initialized both the board in I2C fast mode. 400KHz. Using scope, the operational speed of STM32F7 (Where code is working) is around 320KHz and in STM32F4 (Where code is not working) is around 340KHz. I2C initialization on STM32F7(Working)void...