kopia lustrzana https://github.com/bristol-seds/pico-tracker
28 wiersze
404 B
C
28 wiersze
404 B
C
/**
|
|
* Autogenerated country structures. See sim/geofence
|
|
*/
|
|
|
|
#ifndef GEOFENCE_COUNTRIES_H
|
|
#define GEOFENCE_COUNTRIES_H
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "samd20.h"
|
|
|
|
|
|
/**
|
|
* struct representing all we need to know about a country
|
|
*/
|
|
struct country_t {
|
|
int32_t** outlines;
|
|
char* name;
|
|
char* isocode;
|
|
bool data_tx, aprs_tx;
|
|
};
|
|
|
|
|
|
struct country_t countries[233];
|
|
|
|
#endif /* GEOFENCE_COUNTRIES_H */
|