什么是AT + CWDHCP?返回?

时间:2017-05-13 05:01:05

标签: at-command esp8266

AT + CWDHCP是什么?命令返回?我尝试运行此命令,但它返回一些数字。我试图找到它但找不到任何地方。任何人帮我解决这个问题?

1 个答案:

答案 0 :(得分:1)

  

AT + CWDHCP是什么?命令返回?

(当前)文件

http://espressif.com/sites/default/files/documentation/4a-esp8266_at_instruction_set_en.pdf

状态

  

4.2.14。 AT + CWDHCP-启用/禁用DHCP

     

[@ deprecated] 不推荐使用此命令

     

请改用AT + CWDHCP_CUR或AT + CWDHCP_DEF。

您没有说明您使用的固件版本,因此可能不适用。但返回值被描述为

Returns: DHCP disabled or enabled now? 
Parameters
* Bit0:
  - 0: Station DHCP is disabled.
  - 1: Station DHCP is enabled.
* Bit1:
  - 0: SoftAP DHCP is disabled.
  - 1: SoftAP DHCP is enabled

因此,解码这些位,十进制返回值应代表这些状态:

  • 0" SoftAP DHCP已禁用"和"站DHCP被禁用"
  • 1" SoftAP DHCP被禁用"和" Station DHCP 启用"
  • 2" SoftAP DHCP已禁用"和"站DHCP被禁用"
  • 3" SoftAP DHCP 启用"和" Station DHCP 启用"