blob: 33ecece7b41e59c4a477a85184c6080e4a6ee1b8 [file] [log] [blame]
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08001/* Copyright (C) 2007-2008 The Android Open Source Project
2**
3** This software is licensed under the terms of the GNU General Public
4** License version 2, as published by the Free Software Foundation, and
5** may be copied, distributed, and modified under those terms.
6**
7** This program is distributed in the hope that it will be useful,
8** but WITHOUT ANY WARRANTY; without even the implied warranty of
9** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10** GNU General Public License for more details.
11*/
12#ifndef _android_gps_h
13#define _android_gps_h
14
15#include "qemu-common.h"
16
17/* this is the internal character driver used to communicate with the
18 * emulated GPS unit. see qemu_chr_open() in vl.c */
19extern CharDriverState* android_gps_cs;
20
21extern void android_gps_send_nmea( const char* sentence );
22
23#endif /* _android_gps_h */