-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstm32u5x9j_discovery_ranging_sensor.c
620 lines (539 loc) · 15.4 KB
/
stm32u5x9j_discovery_ranging_sensor.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
/**
******************************************************************************
* @file stm32u5x9j_discovery_ranging_sensor.c
* @author MCD Application Team
* @brief This file includes the driver for Ranging Sensor modules mounted on
* STM32U5x9J_DISCOVERY board.
******************************************************************************
* @attention
*
* Copyright (c) 2023 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* File Info: ------------------------------------------------------------------
* User NOTES
* Includes ------------------------------------------------------------------ */
#include "stm32u5x9j_discovery_ranging_sensor.h"
#include "stm32u5x9j_discovery_bus.h"
/** @addtogroup BSP
* @{
*/
/** @addtogroup STM32U5x9J_DISCOVERY
* @{
*/
/** @addtogroup STM32U5x9J_DISCOVERY_RANGING_SENSOR
* @{
*/
/** @defgroup STM32U5x9J_DISCOVERY_RANGING_SENSOR_Exported_Variables RANGING SENSOR Exported Variables
* @{
*/
void *VL53L5A1_RANGING_SENSOR_CompObj[RANGING_SENSOR_INSTANCES_NBR] = {0};
/**
* @}
*/
/** @defgroup STM32U5x9J_DISCOVERY_RANGING_SENSOR_Private_Variables RANGING SENSOR Private Variables
* @{
*/
static RANGING_SENSOR_Drv_t *VL53L5A1_RANGING_SENSOR_Drv = NULL;
static RANGING_SENSOR_Capabilities_t VL53L5A1_RANGING_SENSOR_Cap;
/**
* @}
*/
/** @defgroup STM32U5x9J_DISCOVERY_RANGING_SENSOR_Private_Functions RANGING SENSOR Private Functions
* Private Functions Prototypes
* @{
*/
static int32_t VL53L5CX_Probe(uint32_t Instance);
static int32_t vl53l5cx_i2c_recover(void);
/**
* @}
*/
/** @defgroup STM32U5x9J_DISCOVERY_RANGING_SENSOR_Exported_Functions RANGING SENSOR Exported Functions
* @{
*/
/**
* @brief Initializes the ranging sensor.
* @param Instance Ranging sensor instance.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_Init(uint32_t Instance)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else
{
/* run i2c recovery before probing the device */
(void)vl53l5cx_i2c_recover();
ret = VL53L5CX_Probe(Instance);
}
return ret;
}
/**
* @brief Deinitializes the ranging sensor.
* @param Instance Ranging sensor instance.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_DeInit(uint32_t Instance)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->DeInit(VL53L5A1_RANGING_SENSOR_CompObj[Instance]) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Read the ranging sensor device ID.
* @param Instance Ranging sensor instance.
* @param pId Pointer to the device ID.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_ReadID(const uint32_t Instance, uint32_t *pId)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->ReadID(VL53L5A1_RANGING_SENSOR_CompObj[Instance], pId) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Get the ranging sensor capabilities.
* @param Instance Ranging sensor instance.
* @param pCapabilities Pointer to the ranging sensor capabilities.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_GetCapabilities(const uint32_t Instance, RANGING_SENSOR_Capabilities_t *pCapabilities)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->GetCapabilities(VL53L5A1_RANGING_SENSOR_CompObj[Instance], pCapabilities) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Set the ranging configuration profile.
* @param Instance Ranging sensor instance.
* @param pConfig Pointer to the new configuration profile to be applied.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_ConfigProfile(const uint32_t Instance, RANGING_SENSOR_ProfileConfig_t *pConfig)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->ConfigProfile(VL53L5A1_RANGING_SENSOR_CompObj[Instance], pConfig) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Configure the Region of Interest of the ranging sensor.
* @param Instance Ranging sensor instance.
* @param pConfig Pointer to the ROI configuration struct.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_ConfigROI(const uint32_t Instance, RANGING_SENSOR_ROIConfig_t *pConfig)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Cap.CustomROI == 0U)
{
ret = BSP_ERROR_FEATURE_NOT_SUPPORTED;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->ConfigROI(VL53L5A1_RANGING_SENSOR_CompObj[Instance], pConfig) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Configure the IT event generation parameters.
* @param Instance Ranging sensor instance.
* @param pConfig Pointer to the IT configuration struct.
* @note The threshold modes can be used only if supported by the device (check the capabilities).
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_ConfigIT(const uint32_t Instance, RANGING_SENSOR_ITConfig_t *pConfig)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->ConfigIT(VL53L5A1_RANGING_SENSOR_CompObj[Instance], pConfig) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Get the last distance measurement information.
* @param Instance Ranging sensor instance.
* @param pResult Pointer to the result struct.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_GetDistance(const uint32_t Instance, RANGING_SENSOR_Result_t *pResult)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->GetDistance(VL53L5A1_RANGING_SENSOR_CompObj[Instance], pResult) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Start ranging.
* @param Instance Ranging sensor instance.
* @param Mode The desired ranging mode
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_Start(uint32_t Instance, uint32_t Mode)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->Start(VL53L5A1_RANGING_SENSOR_CompObj[Instance], Mode) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Stop ranging.
* @param Instance Ranging sensor instance.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_Stop(uint32_t Instance)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->Stop(VL53L5A1_RANGING_SENSOR_CompObj[Instance]) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Set The I2C address of the device.
* @param Instance Ranging sensor instance.
* @param Address New I2C address.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_SetAddress(uint32_t Instance, uint32_t Address)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->SetAddress(VL53L5A1_RANGING_SENSOR_CompObj[Instance], Address) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Get the I2C address of the device.
* @param Instance Ranging sensor instance.
* @param pAddress Pointer to the current I2C address.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_GetAddress(const uint32_t Instance, uint32_t *pAddress)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->GetAddress(VL53L5A1_RANGING_SENSOR_CompObj[Instance], pAddress) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Set the power mode.
* @param Instance Ranging sensor instance.
* @param PowerMode New power mode to be entered.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_SetPowerMode(uint32_t Instance, uint32_t PowerMode)
{
int32_t ret;
if ((Instance >= RANGING_SENSOR_INSTANCES_NBR)
|| ((PowerMode != RANGING_SENSOR_POWERMODE_SLEEP) && (PowerMode != RANGING_SENSOR_POWERMODE_WAKEUP)))
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->SetPowerMode(VL53L5A1_RANGING_SENSOR_CompObj[Instance], (uint8_t)PowerMode) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Get the power mode.
* @param Instance Ranging sensor instance.
* @param pPowerMode Pointer to the current power mode.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_GetPowerMode(const uint32_t Instance, uint32_t *pPowerMode)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5A1_RANGING_SENSOR_Drv->GetPowerMode(VL53L5A1_RANGING_SENSOR_CompObj[Instance], pPowerMode) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @brief Perform a xtalk calibration.
* @param Instance Ranging sensor instance.
* @param Reflectance Target reflectance in percent (range: 1 - 99 %).
* @param Distance Target distance in mm (range 600 - 3000 mm).
* @note The recommended target reflectance value for Xtalk calibration is 3 %.
* @retval BSP status
*/
int32_t BSP_RANGING_SENSOR_XTalkCalibration(uint32_t Instance, uint16_t Reflectance, uint16_t Distance)
{
int32_t ret;
if (Instance >= RANGING_SENSOR_INSTANCES_NBR)
{
ret = BSP_ERROR_WRONG_PARAM;
}
else if (VL53L5CX_XTalkCalibration((VL53L5CX_Object_t *)VL53L5A1_RANGING_SENSOR_CompObj[Instance], Reflectance,
Distance) < 0)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
ret = BSP_ERROR_NONE;
}
return ret;
}
/**
* @}
*/
/** @defgroup STM32U5x9J_DISCOVERY_RANGING_SENSOR_Private_Functions RANGING SENSOR Private Functions
* @{
*/
/**
* @brief Register Bus IOs if component ID is OK.
* @param Instance Ranging sensor instance.
* @retval BSP status
*/
static int32_t VL53L5CX_Probe(uint32_t Instance)
{
int32_t ret;
VL53L5CX_IO_t IOCtx;
uint32_t id;
static VL53L5CX_Object_t VL53L5CXObj[RANGING_SENSOR_INSTANCES_NBR];
/* Configure the ranging sensor driver */
IOCtx.Address = RANGING_SENSOR_VL53L5CX_ADDRESS;
IOCtx.Init = BSP_I2C3_Init;
IOCtx.DeInit = BSP_I2C3_DeInit;
IOCtx.WriteReg = BSP_I2C3_WriteReg16;
IOCtx.ReadReg = BSP_I2C3_ReadReg16;
IOCtx.GetTick = BSP_GetTick;
if (VL53L5CX_RegisterBusIO(&(VL53L5CXObj[Instance]), &IOCtx) != VL53L5CX_OK)
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else
{
VL53L5A1_RANGING_SENSOR_Drv = (RANGING_SENSOR_Drv_t *) &VL53L5CX_RANGING_SENSOR_Driver;
VL53L5A1_RANGING_SENSOR_CompObj[Instance] = &(VL53L5CXObj[Instance]);
if ((VL53L5CX_ReadID(&(VL53L5CXObj[Instance]), &id) != VL53L5CX_OK)
|| (VL53L5A1_RANGING_SENSOR_Drv->Init(VL53L5A1_RANGING_SENSOR_CompObj[Instance]) != VL53L5CX_OK)
|| (VL53L5A1_RANGING_SENSOR_Drv->GetCapabilities(VL53L5A1_RANGING_SENSOR_CompObj[Instance],
&VL53L5A1_RANGING_SENSOR_Cap) != VL53L5CX_OK))
{
ret = BSP_ERROR_COMPONENT_FAILURE;
}
else if (id != VL53L5CX_ID)
{
ret = BSP_ERROR_UNKNOWN_COMPONENT;
}
else
{
ret = BSP_ERROR_NONE;
}
}
return ret;
}
/**
* @brief This functions permits to avoid HW reset due to an I2C bug on the device.
* @retval BSP status
*/
static int32_t vl53l5cx_i2c_recover(void)
{
/* We can't assume bus state based on SDA and SCL state (we may be in a data or NAK bit so SCL=SDA=1)
* by setting SDA high and toggling SCL at least 10 time we ensure whatever agent and state
* all agent should end up seeing a "stop" and bus get back to an known idle i2c bus state */
uint8_t i;
uint8_t retry_cnt = 0;
static uint8_t is_already_init = 0U;
GPIO_InitTypeDef GPIO_InitStruct;
if (is_already_init == 1U)
{
return BSP_ERROR_NONE;
}
/* Enable I/O */
__HAL_RCC_GPIOE_CLK_ENABLE();
GPIO_InitStruct.Pin = VL53L5A1_LP_PIN;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
HAL_GPIO_Init(VL53L5A1_LP_PORT, &GPIO_InitStruct);
HAL_GPIO_WritePin(VL53L5A1_LP_PORT, VL53L5A1_LP_PIN, GPIO_PIN_SET);
GPIO_InitStruct.Pin = BUS_I2C3_SCL_PIN;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_OD;
GPIO_InitStruct.Pull = GPIO_PULLUP;
HAL_GPIO_Init(BUS_I2C3_SCL_GPIO_PORT, &GPIO_InitStruct);
GPIO_InitStruct.Pin = BUS_I2C3_SDA_PIN;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_OD;
GPIO_InitStruct.Pull = GPIO_PULLUP;
HAL_GPIO_Init(BUS_I2C3_SDA_GPIO_PORT, &GPIO_InitStruct);
HAL_GPIO_WritePin(BUS_I2C3_SCL_GPIO_PORT, BUS_I2C3_SCL_PIN, GPIO_PIN_SET);
HAL_GPIO_WritePin(BUS_I2C3_SDA_GPIO_PORT, BUS_I2C3_SDA_PIN, GPIO_PIN_SET);
do
{
for (i = 0; i < 10U; i++)
{
HAL_GPIO_WritePin(BUS_I2C3_SCL_GPIO_PORT, BUS_I2C3_SCL_PIN, GPIO_PIN_RESET);
HAL_Delay(1);
HAL_GPIO_WritePin(BUS_I2C3_SCL_GPIO_PORT, BUS_I2C3_SCL_PIN, GPIO_PIN_SET);
HAL_Delay(1);
}
retry_cnt++;
} while ((HAL_GPIO_ReadPin(BUS_I2C3_SDA_GPIO_PORT, BUS_I2C3_SDA_PIN) == GPIO_PIN_RESET) && (retry_cnt < 7U));
if (HAL_GPIO_ReadPin(BUS_I2C3_SCL_GPIO_PORT, BUS_I2C3_SDA_PIN) == GPIO_PIN_RESET)
{
/* We are still in a bad i2c state, return error */
return BSP_ERROR_COMPONENT_FAILURE;
}
/* Restore the GPIO config of I2C3 SCL and SDA */
/* Configure I2C TX as Alternate Function */
GPIO_InitStruct.Pin = BUS_I2C3_SCL_PIN;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
GPIO_InitStruct.Alternate = BUS_I2C3_SCL_AF;
HAL_GPIO_Init(BUS_I2C3_SCL_GPIO_PORT, &GPIO_InitStruct);
/* Configure I2C Rx as alternate function */
GPIO_InitStruct.Pin = BUS_I2C3_SDA_PIN;
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
GPIO_InitStruct.Pull = GPIO_PULLUP;
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
GPIO_InitStruct.Alternate = BUS_I2C3_SDA_AF;
HAL_GPIO_Init(BUS_I2C3_SDA_GPIO_PORT, &GPIO_InitStruct);
is_already_init = 1U;
return BSP_ERROR_NONE;
}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/