abcd
abcd - 认证专家
我只是个路过的老年人~

注册于 2 年前

回答
83
文章
8
关注者
2

These two values are the size of the transmit and receive buffs for the serial port, which are loop buffs used for buffering in the driver. If hostif is turned off, sending buffs is not used, only receiving buffs are used in the UART driver. Because it is a loop buff, the size can be adjusted according to the actual amount of data transmitted. The minimum value is not recommended to be less than 512.

"涉及蓝牙 Wi-Fi 的连接" 指的是什么, 具体想了解什么.

原始 SDK, 只需改 wm_demo. h 里面就可以跑 ble demo 的, 是不是用 CDK 打开的工程不对, 需要打开的是 W80X_SDK_v1. 00. 10/tools/w800/projects/SDK_Project/project/CDK_WSW800_SDK/W800_SDK. cdkproj 这个工程文件.

做 UI 一般选用 W802, 外置 flash 可以自定义大小, 目前最大 16M. 有专门带 LVGL 的刷屏 SDK. W806 SDK 修改 flash 大小, 是在 ld/w800/gcc_csky. ld 文件里, 改 I-SRAM 的 LENGTH 大小, 这个 length 大小代表你的 flash 划分给运行固件的空间的最大值.

如果在没移植 flashdb 之前是正常的, 移植后才出现, 那可能是移植造成的内存方面的影响. 另外就是接线是否有影响, 比如接线太长了等. 这种问题没办法给出具体原因, 只能是多测试来定位排除原因.

每一层目录下都需要放一个 makefile 文件, 可以复制 app 目录下的 makefile 文件, 只需要三个地方, 1, TOP_DIR 的层级; 2, GEN_LIBS 本层生成的库文件的名字; 3, GEN_LIBS 下一行加上 COMPONENTS_libxxx = xxx 本层子目录下生成的库文件的名字. 可以参考 platform/driver 目录下各驱动和 driver 目录的关系, 以及 makefile 文件的编写.

The W800/W801 only have different packaging pins, there is no difference in other aspects. The same applies to W805 and W806. The difference between W800/W801 and W805/W806 is whether they have WiFi/BLE function and whether the built-in flash is 2M or 1M, all other functions are the same. So running the same program on any chip is no different. There is no place to distinguish which model it is. They are originally different packages of the same series.

当前 SDK 内存管理没有做 psram 相关的, 不支持把堆定义到 PSRAM, 只能是自己管理 PSRAM 的内存使用.

断网并不会影响下一次发送, 每次发送都是重新开始的. 检查下 url 是不是变了.

初始化 IO 后直接调用 tls_spifls_write 和 tls_spifls_read 来读写.

发送完成回调是调用 tls_uart_tx_sent_callback_register 来注册, 只有在发送完 tls_uart_write 设置的长度才会调用发送完成回调, 不会四字节就触发, 除非是只发送了四个字节.
timer 的定时单位只能是 ms 和 us, 没有 ns.

有卖那种 USB 测电流的工具的, 或者最简单的用万用表串到供电线路上.

跟芯片没关系. 需要自己实现 mqtt 连接阿里云的功能.

发布
问题