Files
rtl_433/include/delay_timer.h
Christian W. Zuckschwerdt 2c98479bea minor: Refactor delay_timer
2026-06-28 20:19:13 +02:00

24 lines
714 B
C

/** @file
Generic RF data receiver and decoder for ISM band devices using RTL-SDR and SoapySDR.
Copyright (C) 2026 Christian W. Zuckschwerdt <zany@triq.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
*/
#ifndef INCLUDE_DELAY_TIMER_H_
#define INCLUDE_DELAY_TIMER_H_
#include "compat_time.h"
typedef struct timeval delay_timer_t;
void delay_timer_init(delay_timer_t *delay_timer);
void delay_timer_wait(delay_timer_t *delay_timer, unsigned delay_us);
#endif /* INCLUDE_DELAY_TIMER_H_ */