-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusbctrl_event.h
More file actions
42 lines (38 loc) · 1.42 KB
/
usbctrl_event.h
File metadata and controls
42 lines (38 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
*
* Copyright 2018 The wookey project team <wookey@ssi.gouv.fr>
* - Ryad Benadjila
* - Arnauld Michelizza
* - Mathieu Renard
* - Philippe Thierry
* - Philippe Trebuchet
*
* This package is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* the Free Software Foundation; either version 3 of the License, or (at
* ur option) any later version.
*
* This package 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 package; if not, write to the Free Software Foundation, Inc., 51
* Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef USBCTRL_EVENT_H_
#define USBCTRL_EVENT_H_
/*
* This file handle the overall reset events, and the associate state change, in
* interaction with the state automaton.
*/
#include "libc/types.h"
#include "api/libusbctrl.h"
/*
* INFO: functions declared in the usbctrl_event.c file are made to be resolved at link
* time by the driver. They are not static, but they are not defined in a header, as
* they are not called from any part of the libUSBCtrl, but only triggered from the
* driver itself.
*/
#endif/*!USBCTRL_EVENT_H_*/