blob: 38530a9e6d56b9e164c4a5797391e5e817426d95 (
plain)
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
|
/*
* fusb302 usb phy driver for type-c and PD
*
* Copyright (C) 2015, 2016 Fairchild Semiconductor Corporation
*
* 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 3 of the License, or
* 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. Seee 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifdef FSC_DEBUG
#ifndef __FSC_VERSION_H__
#define __FSC_VERSION_H__
#include "platform.h"
/* Program Revision constant. When updating firmware, change this. */
#define FSC_TYPEC_CORE_FW_REV_UPPER 3
#define FSC_TYPEC_CORE_FW_REV_MIDDLE 3
#define FSC_TYPEC_CORE_FW_REV_LOWER 1
FSC_U8 core_get_rev_lower(void);
FSC_U8 core_get_rev_middle(void);
FSC_U8 core_get_rev_upper(void);
#endif // __FSC_VERSION_H_
#endif // FSC_DEBUG
|