Files
cJSON/Core/Inc/cJSON_Test.h

22 lines
462 B
C
Raw Normal View History

2024-01-29 17:36:17 +08:00
//
// Created by zhu on 2024/1/29.
//
#include "cJSON.h"
#ifndef H750_CJSON_CJSON_TEST_H
#define H750_CJSON_CJSON_TEST_H
2024-01-30 17:50:49 +08:00
struct paramstruct {
int temperature;
int pn;
int sn;
int production_date;
int manufacturer;
int Device_Pixel_Length;
uint8_t Set_Integration_Time;
2024-01-30 17:50:49 +08:00
};
2024-01-29 17:36:17 +08:00
void cjson(uint8_t g_usart_json_string[]);
void parseNestedObject(cJSON *nestedObject);
2024-01-30 17:50:49 +08:00
struct paramstruct *GetParametesptr();
2024-01-29 17:36:17 +08:00
#endif //H750_CJSON_CJSON_TEST_H