Files
Frame-rate-optimization/Bsp/get_json.h

16 lines
293 B
C
Raw Normal View History

2026-04-09 10:14:20 +08:00
#ifndef _GET_JSON_H
#define _GET_JSON_H
#include "at32a423.h"
typedef struct
{
uint16_t min_trigger_res_value;
uint16_t max_trigger_res_value;
}json_data_struct;
int get_Json_data(void);
uint16_t get_json_min_trigger_res_value(void);
uint16_t get_json_max_trigger_res_value(void);
#endif