-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKconfig
More file actions
35 lines (35 loc) · 925 Bytes
/
Copy pathKconfig
File metadata and controls
35 lines (35 loc) · 925 Bytes
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
menu "FP-SDK"
menu "Heap Configuration"
config FP_TLSF_HEAP_EN
bool "Enable TLSF Heap"
default n
help
Enable TLSF Heap
if FP_TLSF_HEAP_EN
config TLSF_HEAP_SIZE
int "TLSF Heap Size"
default 10240
endif
endmenu
menu "Bus Configuration"
config FP_BUS_DRIVER_EN
bool "Enable Bus Driver"
default n
help
Enable Bus Driver
if FP_BUS_DRIVER_EN
config FP_HALF_BUS_DRIVER
bool "Enable Half Bus Driver"
default n
help
Enable Half Bus Driver
if FP_HALF_BUS_DRIVER
config FP_HALF_BUS_BAUDRATE
int "Half Bus Driver Baudrate"
default 115200
help
Half Bus Driver Baudrat
endif
endif
endmenu
endmenu