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連接阿裡雲的功能。

發布
問題