Files
GD32E230_VL53L4CD/Src/main.c
T
hulk ef37553b18 feat(VL53L4CD): 增加偏移校准支持并固化44mm安装偏移
- 新增 vl53l4cd_set_offset/get_offset/calibrate_offset
- main 支持开机自动校准或启动时写回固定偏移
- 当前44mm哑光目标校准结果 offset=-9mm
- 同步更新 README 与 CHANGES
2026-08-07 00:16:50 +08:00

125 lines
3.7 KiB
C

/*!
\file main.c
\brief running LED
\version 2025-02-10, V2.4.0, demo for GD32E23x
*/
/*
Copyright (c) 2025, GigaDevice Semiconductor Inc.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
OF SUCH DAMAGE.
*/
#include "gd32e23x.h"
#include "systick.h"
#include "uart.h"
#include "uart_ring_buffer.h"
#include "led.h"
#include "command.h"
#include <stdio.h>
#include "i2c.h"
#include "board_config.h"
#include "VL53L4CD_Driver.h"
/*!
\brief main function
\param[in] none
\param[out] none
\retval none
*/
int main(void)
{
led_init();
mcu_detect_and_config();
// delay_ms(1000);
systick_config();
uart_ring_buffer_init();
uart_init();
i2c_config();
#if DEBUG_MODE == CFG_ENABLE
printf("Hello World!\r\n");
#endif
#if SEGGER_RTT_DETECTION == CFG_ENABLE
RTT_printf(0, "Hello World!\r\n");
#endif
#if DEBUG_VERBOSE == CFG_ENABLE
i2c_scan();
i2c_bus_reset();
#endif
if (vl53l4cd_init()) {
#if VL53L4CD_AUTO_CALIB == CFG_ENABLE
int16_t cal_offset = 0;
if (vl53l4cd_calibrate_offset(VL53L4CD_CALIB_TARGET_MM,
VL53L4CD_CALIB_SAMPLES,
&cal_offset)) {
printf("VL53L4CD offset calibrated: %d mm\r\n", cal_offset);
} else {
printf("VL53L4CD offset calibration failed\r\n");
}
#else
(void)vl53l4cd_set_offset(VL53L4CD_CALIB_OFFSET_MM);
#endif
vl53l4cd_start_ranging();
printf("VL53L4CD ready\r\n");
} else {
printf("VL53L4CD init failed\r\n");
}
/* ========== Command Testing ========== */
/* ========== */
while(1){
command_process(); /* Process UART commands */
if (vl53l4cd_data_ready()) {
vl53l4cd_result_t result;
vl53l4cd_clear_interrupt();
if (vl53l4cd_get_result(&result)) {
printf("Distance: %u mm | status: %u | signal: %lu kcps | ambient: %lu kcps | sigma: %u mm\r\n",
result.distance_mm,
result.range_status,
(unsigned long)result.signal_rate_kcps,
(unsigned long)result.ambient_rate_kcps,
result.sigma_mm);
}
delay_ms(500);
}
delay_ms(10);
}
}