14 lines
211 B
C
14 lines
211 B
C
#ifndef CONFIGURATION_H
|
|
#define CONFIGURATION_H
|
|
|
|
#include "scd4x_data.h"
|
|
|
|
struct configuration_data {
|
|
scd4x_data_t* measure;
|
|
};
|
|
typedef struct configuration_data configuration_data_t;
|
|
|
|
void func(void);
|
|
|
|
#endif
|