pico-tracker/firmware/inc/geofence_aprs.h

27 wiersze
385 B
C
Czysty Zwykły widok Historia

2015-04-12 17:24:50 +00:00
/**
* Autogenerated aprs zone structures. See sim/geofence
*/
#ifndef GEOFENCE_APRS_H
#define GEOFENCE_APRS_H
#include <stdbool.h>
2015-04-12 17:24:50 +00:00
#include "samd20.h"
/**
* struct representing all we need to know about a aprs zone
*/
struct aprs_zone_t {
int32_t** outlines;
2015-04-12 17:24:50 +00:00
int32_t frequency, deviation;
char* name;
2015-04-12 17:24:50 +00:00
};
struct aprs_zone_t aprs_zones[];
#endif /* GEOFENCE_APRS_H */