Merge pull request #5535 from mysterywolf/esp8266

[stm32][at esp8266][kconfig] 增加esp8266配置选项接管
This commit is contained in:
guo 2022-01-20 10:42:23 +08:00 committed by GitHub
commit f2dc981994
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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