Arduino-AirMCU icon indicating copy to clipboard operation
Arduino-AirMCU copied to clipboard

Arduino core for the Air MCU.

Results 15 Arduino-AirMCU issues
Sort by recently updated
recently updated
newest added

### 您的功能请求是否与解决某些问题有关?请描述一下。/ Is your feature request related to a problem? Please describe. 在硬件看门狗没有实现的情况下可以直接调用HAL实现看门狗吗?有没有HAL调用相关的示例,直接引用air001xx_hal_iwdg.h调用编译的时候提示找不到方法 ### 描述您想要的解决方案 / Describe the solution you'd like 在硬件看门狗没有实现的情况下可以直接调用HAL实现看门狗吗?有没有HAL调用相关的示例,直接引用air001xx_hal_iwdg.h调用编译的时候提示找不到方法 ### 描述您想要的详细使用步骤描述 / Describe the solution you'd like...

### 描述一下这个bug / Describe the bug 两块板子,一块是ESP32C3,另一块是AIR001,用I2C连接,有接上拉电阻。ESP32C3作主机,AIR001作从机。ESP32C3主机用Wire.write方法发送操作多个字节的数据时,反馈结果是2,AIR001从机那边没有收到数据。之前 #34 这个bug有提过,但是没彻底解决。 ### 复现步骤 / To Reproduce 从机先复位,然后主机复位,主机能找到从机的地址,从机没有收到主机发送过来的数据。 ### 如果正常,应该是什么样 / Expected behavior 正常AIR001从机能够读取到ESP32主机发过来的数据。 ### 截图 / Screenshots ESP32C3主机代码: ` #include #define I2C_slave_ADDR...

### 您的功能请求是否与解决某些问题有关?请描述一下。/ Is your feature request related to a problem? Please describe. 希望官方能封装一个arduino的看门狗库 ### 描述您想要的解决方案 / Describe the solution you'd like 希望官方能封装一个arduino的看门狗库 ### 描述您想要的详细使用步骤描述 / Describe the solution you'd like...

🚩目标

实测Air001在24MHz外部晶振的情况下,HSE启动时间大于100ms,将HSE_STARTUP_TIMEOUT修改为200能够正常启动

### 描述一下这个bug / Describe the bug 我想魔改HardwareSerial.cpp 以实现软件流控,发现函数_tx_complete_irq在返回0后,串口数据仍然没有传输完成,串口有波形输出 ### 复现步骤 / To Reproduce 魔改HardwareSerial.cpp的部分内容如下: ``` int HardwareSerial::_tx_complete_irq(serial_t *obj) { size_t remaining_data; // previous HAL transfer is finished, move tail pointer...