2020-02-26 22:32:26 -08:00
|
|
|
/*
|
|
|
|
* @file persistent_configuration.h
|
|
|
|
*
|
|
|
|
* @date Feb 27, 2020
|
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-12-19 12:25:14 -08:00
|
|
|
#include "generated_lookup_engine_configuration.h"
|
2020-02-26 22:32:26 -08:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int version;
|
|
|
|
int size;
|
|
|
|
persistent_config_s persistentConfiguration;
|
2023-10-31 06:36:29 -07:00
|
|
|
uint32_t crc;
|
2020-02-26 22:32:26 -08:00
|
|
|
} persistent_config_container_s;
|