-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.projbuild
95 lines (80 loc) · 2.88 KB
/
Kconfig.projbuild
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
menu "RF 315/433 Module Receiver"
menu "Protocols"
config RF_MODULE_PROTOCOL_EV1527
bool "EV1527 chip protocol (Protocol 1)"
default y
help
Support devices based on EV1527, RT1527, FP1527, HS1527, etc chips.
config RF_MODULE_PROTOCOL_2
bool "RC Switch's Protocol 2"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_3
bool "RC Switch's Protocol 3"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_4
bool "RC Switch's Protocol 4"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_5
bool "RC Switch's Protocol 5"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_HT6P20B
bool "HT6P20B chip protocol (Protocol 6)"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_HS2303_PT
bool "HS2303-PT chip protocol (Protocol 7)"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_1BYONE
bool "1ByOne Doorbell protocol (Protocol 10)"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_HT12E
bool "HT12E chip protocol (Protocol 11)"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_SM5212
bool "SM5212 chip protocol (Protocol 12)"
default n
help
Not tested yet
config RF_MODULE_PROTOCOL_KINGSERRY
bool "King-Serry Protocol"
default n
help
The protocol can be found in Shenzhen King-Serry Electronics Co. Ltd's devices.
The devices of this manufacturer are offered under different names (e.g.: Smernit).
You will need very precise RF receiver to reliably read the data.
King-Serry uses CMT2210LB (high-frequency receiver of CMOSTEK) and it seems the signal is parsed
with dedicated microcontroller.
endmenu
choice RF_MODULE_TASK_CORE_ID
bool "Protocol parsers task Core ID"
default RF_MODULE_TASK_PINNED_TO_NONE
depends on !(FREERTOS_UNICORE || IDF_TARGET_ESP8266)
help
Pinned RF protocol parsers task to core 0 or core 1.
config RF_MODULE_TASK_PINNED_TO_NONE
bool "None"
config RF_MODULE_TASK_PINNED_TO_CORE_0
bool "Core 0"
config RF_MODULE_TASK_PINNED_TO_CORE_1
bool "Core 1"
endchoice
config RF_MODULE_TASK_PINNED_TO_CORE
int
default 0 if RF_MODULE_TASK_PINNED_TO_CORE_0
default 1 if RF_MODULE_TASK_PINNED_TO_CORE_1
endmenu