Files
rtl_433/include/decoder.h
2019-03-23 12:08:32 +01:00

19 lines
382 B
C

/** @file
Meta include for all decoders.
*/
#ifndef INCLUDE_DECODER_H_
#define INCLUDE_DECODER_H_
#include <string.h>
#include "r_device.h"
#include "bitbuffer.h"
#include "data.h"
#include "util.h"
#include "decoder_util.h"
/* TODO: temporary allow to change to new style model keys */
#define _X(n, o) (decoder->new_model_keys ? (n) : (o))
#endif /* INCLUDE_DECODER_H_ */