24 lines
660 B
C
24 lines
660 B
C
/**
|
|
* @file main.h
|
|
* @brief Excuting commands, resample data, triggle camera, and send data to valve
|
|
* @author miaow (3703781@qq.com)
|
|
* @version 1.1
|
|
* @date 2023/02/08
|
|
*
|
|
* @copyright Copyright (c) 2022 miaow
|
|
*
|
|
* @par Changelog:
|
|
* <table>
|
|
* <tr><th>Date <th>Version <th>Author <th>Description
|
|
* <tr><td>2022/01/16 <td>1.0 <td>miaow <td>Write this file
|
|
* <tr><td>2023/02/08 <td>1.1 <td>miaow <td>Add debug option for interval of camera triggle
|
|
* </table>
|
|
*/
|
|
#ifndef __MAIN_H
|
|
#define __MAIN_H
|
|
|
|
// #define DEBUG_CAMERA_TRIG_PERIOD // uncomment this to print the interval of camera triggle in the unit of usecond
|
|
|
|
|
|
#endif
|