Charles
Charles
### 初始化函数rt_stm32_eth_init rt_stm32_eth_init初始化EthHandle时的代码如下: ```c __HAL_RCC_ETH_CLK_ENABLE(); phy_reset(); /* ETHERNET Configuration */ EthHandle.Instance = ETH; EthHandle.Init.MACAddr = (rt_uint8_t *)&stm32_eth_device.dev_addr[0]; EthHandle.Init.AutoNegotiation = ETH_AUTONEGOTIATION_DISABLE; EthHandle.Init.Speed = ETH_SPEED_100M; EthHandle.Init.DuplexMode = ETH_MODE_FULLDUPLEX; EthHandle.Init.MediaInterface = ETH_MEDIA_INTERFACE_RMII; EthHandle.Init.RxMode...
文件:[at_device](https://github.com/RT-Thread-packages/at_device)/[class](https://github.com/RT-Thread-packages/at_device/tree/master/class)/[esp32](https://github.com/RT-Thread-packages/at_device/tree/master/class/esp32)/at_device_esp32.c 行数:104~128: ```c if (at_obj_exec_cmd(device->client, resp, "AT+CIPDNS?") < 0) { LOG_W("please check and update %s device firmware to support the \"AT+CIPDNS?\" cmd.", device->name); goto __exit; } if (at_resp_parse_line_args(resp, 1, resp_dns,...
RT,只看到了socket,为什么没有BT/BLE呢?
I' m using NimBLE in ESP32(server), the SecurityAuth is: ~~~c NimBLEDevice::setSecurityAuth(BLE_SM_PAIR_AUTHREQ_BOND | BLE_SM_PAIR_AUTHREQ_SC); ~~~ ISSUE: --- After several mobile phones(client) connected to the same ESP32, the connection fails on the...
Language: C/C++ Enumeration members are all white now, which is confused with other variables.  **Maybe they can be colored?**
mem_realloc会判断offset = msize - old_size是否等于0,当重新分配的内存和原始内存一样大的时候(offset == 0),就会分配失败return 0,这里是bug吧?