pico-tracker/firmware/inc/geofence_aprs.h

29 wiersze
465 B
C

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 {
const int32_t** outlines;
const int32_t outline_count;
const uint32_t* outline_lengths;
2015-04-12 17:24:50 +00:00
int32_t frequency, deviation;
char* name;
2015-04-12 17:24:50 +00:00
};
const struct aprs_zone_t aprs_zones[12];
2015-04-12 17:24:50 +00:00
#endif /* GEOFENCE_APRS_H */