#ifndef CONV_COMMON #define CONV_COMMON #include #include //#include //#include #include #include #include #include #include "correct.h" #include "portable.h" #include "os_mem_api.h" #include "iot_module_api.h" typedef uint16_t shift_register_t; typedef uint16_t polynomial_t; typedef uint64_t path_t; typedef uint8_t soft_t; static const soft_t soft_max = UINT8_MAX; typedef uint16_t distance_t; static const distance_t distance_max = UINT16_MAX; typedef enum { CORRECT_SOFT_LINEAR, CORRECT_SOFT_QUADRATIC, } soft_measurement_t; #endif