Skip to content

Latest commit

 

History

History
62 lines (54 loc) · 2.58 KB

usb_moded-android.h

File metadata and controls

62 lines (54 loc) · 2.58 KB
 
Aug 24, 2018
Aug 24, 2018
2
3
* @file usb_moded-android.h
*
Apr 9, 2019
Apr 9, 2019
4
* Copyright (C) 2013-2019 Jolla. All rights reserved.
Aug 24, 2018
Aug 24, 2018
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
*
* @author: Philippe De Swert <philippe.deswert@jollamobile.com>
* @author: Simo Piiroinen <simo.piiroinen@jollamobile.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the Lesser GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* 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 Lesser GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef USB_MODED_ANDROID_H_
# define USB_MODED_ANDROID_H_
# include <stdbool.h>
Sep 5, 2018
Sep 5, 2018
28
# include <glib.h>
Aug 24, 2018
Aug 24, 2018
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* ========================================================================= *
* Constants
* ========================================================================= */
# define ANDROID0_DIRECTORY "/sys/class/android_usb/android0"
# define ANDROID0_ENABLE "/sys/class/android_usb/android0/enable"
# define ANDROID0_FUNCTIONS "/sys/class/android_usb/android0/functions"
# define ANDROID0_ID_PRODUCT "/sys/class/android_usb/android0/idProduct"
# define ANDROID0_ID_VENDOR "/sys/class/android_usb/android0/idVendor"
# define ANDROID0_MANUFACTURER "/sys/class/android_usb/android0/iManufacturer"
# define ANDROID0_PRODUCT "/sys/class/android_usb/android0/iProduct"
# define ANDROID0_SERIAL "/sys/class/android_usb/android0/iSerial"
/* ========================================================================= *
* Prototypes
* ========================================================================= */
Apr 9, 2019
Apr 9, 2019
47
48
49
/* ------------------------------------------------------------------------- *
* ANDROID
* ------------------------------------------------------------------------- */
Aug 24, 2018
Aug 24, 2018
50
Aug 24, 2018
Aug 24, 2018
51
bool android_in_use (void);
Aug 24, 2018
Aug 24, 2018
52
gchar *android_get_serial (void);
Feb 21, 2019
Feb 21, 2019
53
54
bool android_init (void);
void android_quit (void);
Aug 24, 2018
Aug 24, 2018
55
bool android_set_enabled (bool enable);
Aug 24, 2018
Aug 24, 2018
56
bool android_set_charging_mode(void);
Aug 24, 2018
Aug 24, 2018
57
bool android_set_function (const char *function);
Aug 24, 2018
Aug 24, 2018
58
59
bool android_set_productid (const char *id);
bool android_set_vendorid (const char *id);
Aug 24, 2018
Aug 24, 2018
60
bool android_set_attr (const char *function, const char *attr, const char *value);
Aug 24, 2018
Aug 24, 2018
61
62
#endif /* USB_MODED_ANDROID_H_ */