Files
rtl_433/include/decoder.h
Christian W. Zuckschwerdt 9970149d63 Change to newmodel keys default
2020-02-02 14:02:37 +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->old_model_keys ? (o) : (n))
#endif /* INCLUDE_DECODER_H_ */