/* jawsd - connects to AWS datalogger over serial connection and provides
 *         weather information to the network
 * Copyright (C) 2003-2004 Jeffrey Grafton <jgrafton@tjhsst.edu>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
 */

#define _POSIX_SOURCE 1

#define BAUDRATE B2400
#define DATA_LOGGER "/dev/ttyS0"
#define AWS_SERVER_TCP_PORT 95
#define NETWORK_RAW_TCP_PORT 8888
#define NETWORK_RAW_TCP_PORT2 8889
#define UID 101
#define VERSION "0.0.1"
#define AWS_SCHOOLNET "SCHOOLNET AWSBETA   "
#define AWS_AWSBETA "AWSBETA   AWSBETA   "
#define AWS_ADMIN "passhere"
#define AWS_STATION_NAME "ALEXR     "
#define AWS_MAX_CONNECTIONS 5

#define SERIAL_LENGTH 9
#define HISTORY_ID_LENGTH 2
#define HISTORY_LENGTH 500
#define MYSQL_HOST "blah"
#define MYSQL_USERNAME "uname"
#define MYSQL_PASSWORD "pass"
#define MYSQL_DATABASE "db"
#define WUNDERPASS "pass"
#define WUNDERSTATION "KVAALEXA6"
//KVAALEXA6 is our station

