[stm32][at esp8266][kconfig] 增加esp8266配置选项接管

This commit is contained in:
Meco Man 2022-01-17 13:16:14 -05:00
parent 77a5ddf9ae
commit 94116501fe
2 changed files with 8 additions and 0 deletions

View File

@ -438,6 +438,7 @@ menu "Board extended module Drivers"
select PKG_USING_AT_DEVICE
select AT_DEVICE_USING_ESP8266
select AT_DEVICE_ESP8266_SAMPLE
select AT_DEVICE_ESP8266_SAMPLE_BSP_TAKEOVER
if BSP_USING_AT_ESP8266
@ -457,6 +458,8 @@ menu "Board extended module Drivers"
int "The maximum length of receive line buffer"
default 512
comment "May adjust RT_SERIAL_RB_BUFSZ up to 512 if using the Serial V1 device driver"
endif
endmenu

View File

@ -473,8 +473,10 @@ menu "Board extended module Drivers"
select PKG_USING_AT_DEVICE
select AT_DEVICE_USING_ESP8266
select AT_DEVICE_ESP8266_SAMPLE
select AT_DEVICE_ESP8266_SAMPLE_BSP_TAKEOVER
if BSP_USING_AT_ESP8266
config ESP8266_SAMPLE_WIFI_SSID
string "WIFI ssid"
default "rtthread"
@ -490,6 +492,9 @@ menu "Board extended module Drivers"
config ESP8266_SAMPLE_RECV_BUFF_LEN
int "The maximum length of receive line buffer"
default 512
comment "May adjust RT_SERIAL_RB_BUFSZ up to 512 if using the Serial V1 device driver"
endif
config BSP_USING_NRF24L01