2015-04-12 17:24:50 +00:00
|
|
|
/**
|
|
|
|
* Autogenerated aprs zone structures. See sim/geofence
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GEOFENCE_APRS_H
|
|
|
|
#define GEOFENCE_APRS_H
|
|
|
|
|
|
|
|
|
2015-04-12 20:13:53 +00:00
|
|
|
#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 {
|
2015-05-12 20:38:16 +00:00
|
|
|
const int32_t** outlines;
|
2015-06-07 21:24:20 +00:00
|
|
|
const int32_t outline_count;
|
2015-05-12 20:38:16 +00:00
|
|
|
const uint32_t* outline_lengths;
|
2015-04-12 17:24:50 +00:00
|
|
|
int32_t frequency, deviation;
|
2015-04-12 20:13:53 +00:00
|
|
|
char* name;
|
2015-04-12 17:24:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2015-05-12 20:38:16 +00:00
|
|
|
const struct aprs_zone_t aprs_zones[12];
|
2015-04-12 17:24:50 +00:00
|
|
|
|
|
|
|
#endif /* GEOFENCE_APRS_H */
|