1 Commits

Author SHA1 Message Date
a113fefbbe add MLX90614 LIB 2024-09-26 10:09:05 +08:00
3 changed files with 14 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ set(TARGET_C_SRC
${CMAKE_SOURCE_DIR}/src/gd32e23x_it.c ${CMAKE_SOURCE_DIR}/src/gd32e23x_it.c
${CMAKE_SOURCE_DIR}/src/systick.c ${CMAKE_SOURCE_DIR}/src/systick.c
${CMAKE_SOURCE_DIR}/src/ultrasonic_driver.c ${CMAKE_SOURCE_DIR}/src/ultrasonic_driver.c
${CMAKE_SOURCE_DIR}/src/mlx90614.c
) )
add_executable(xlsw_3dp_ultrasonic_300K ${TARGET_C_SRC}) add_executable(xlsw_3dp_ultrasonic_300K ${TARGET_C_SRC})

8
inc/mlx90614.h Normal file
View File

@@ -0,0 +1,8 @@
//
// Created by dell on 24-9-26.
//
#ifndef MLX90614_H
#define MLX90614_H
#endif //MLX90614_H

5
src/mlx90614.c Normal file
View File

@@ -0,0 +1,5 @@
//
// Created by dell on 24-9-26.
//
#include "mlx90614.h"