bldc/confgenerator.h

26 lines
772 B
C
Raw Normal View History

// This file is autogenerated by VESC Tool
#ifndef CONFGENERATOR_H_
#define CONFGENERATOR_H_
#include "datatypes.h"
#include <stdint.h>
#include <stdbool.h>
// Constants
2022-05-23 05:42:42 -07:00
#define MCCONF_SIGNATURE 3188187738
#define APPCONF_SIGNATURE 2551442059
// Functions
int32_t confgenerator_serialize_mcconf(uint8_t *buffer, const mc_configuration *conf);
int32_t confgenerator_serialize_appconf(uint8_t *buffer, const app_configuration *conf);
bool confgenerator_deserialize_mcconf(const uint8_t *buffer, mc_configuration *conf);
bool confgenerator_deserialize_appconf(const uint8_t *buffer, app_configuration *conf);
void confgenerator_set_defaults_mcconf(mc_configuration *conf);
void confgenerator_set_defaults_appconf(app_configuration *conf);
// CONFGENERATOR_H_
#endif