forked from jvpernis/esp32-ps3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Kconfig
48 lines (40 loc) · 1.85 KB
/
Kconfig
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
43
44
45
46
47
48
menu PS3
choice IDF_COMPATIBILITY
prompt "Framework compatibility"
default IDF_COMPATIBILITY_STABLE
help
The esp32-ps3 project uses internal APIs that can change without notice.
This option allows you to use older ESP-IDF versions, in case you get compilation
errors.
If you are unsure which master branch revision you should take, figure out what the
commit date is of your ESP-IDF version (by running `git show`), and look at the help
text of each revision listed here to know their revision date.
config IDF_COMPATIBILITY_STABLE
bool "Latest stable release"
config IDF_COMPATIBILITY_MASTER
bool "Latest master revision"
config IDF_COMPATIBILITY_MASTER_21165ED
bool "Master branch revision 21165ed and later"
help
Revision date: 30-June-2019
Revision message: Bluetooth component refactoring
config IDF_COMPATIBILITY_MASTER_D9CE0BB
bool "Master branch revision d9ce0bb and later"
help
Revision date: 13-March-2019
Revision message: Modify esp_bt_gap_set_scan_mode() to be able to set connection modes
as well as discoverable modes
config IDF_COMPATIBILITY_MASTER_21AF1D7
bool "Master branch revision 21af1d7 and later"
help
Revision date: 10-July-2018
Revision message: Add Secure Simple Pairing
endchoice
config IDF_COMPATIBILITY
int
default 1 if IDF_COMPATIBILITY_STABLE
default 3 if IDF_COMPATIBILITY_MASTER
default 3 if IDF_COMPATIBILITY_MASTER_21165ED
default 2 if IDF_COMPATIBILITY_MASTER_D9CE0BB
default 1 if IDF_COMPATIBILITY_MASTER_21AF1D7
endmenu