2016-02-15 20:01:48 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
2016-02-14 06:20:17 +00:00
|
|
|
#include <stdbool.h>
|
2016-02-17 16:40:09 -08:00
|
|
|
|
|
|
|
|
struct buf;
|
|
|
|
|
struct packet;
|
2016-02-14 06:20:17 +00:00
|
|
|
|
2016-02-15 06:47:40 +00:00
|
|
|
void airspy_adsb_init();
|
2016-02-17 16:40:09 -08:00
|
|
|
bool airspy_adsb_parse(struct buf *, struct packet *, void *);
|
2016-02-17 21:53:34 -08:00
|
|
|
void airspy_adsb_serialize(struct packet *, struct buf *);
|