dzx815

Results 10 issues of dzx815

Is there any way? I directly regard this as a text input box. I can only input hexadecimal numbers, and the display effect is the same as you are now....

enhancement
New feature request

When decompressing, when the size of a single file exceeds the remaining memory, it will directly fail

bool result = NativeWifi.ConnectNetwork( interfaceId: interfaceInfo.Id, profileName: ssid, bssType: BssType.Infrastructure, System.Net.NetworkInformation.PhysicalAddress.Parse("78:9C:E7:A0:C8:56") );

目前示例代码stm32的串口用的串口中断, 但是实际上数据量是很大的, 对于一般的主控芯片负担会比较重, 我这边之前尝试过改dma,但是失败了,具体原因不清楚(我其他项目的串口dma都是正常运行的), 你们可以支持一下串口dma收发的方式实现psdk示例程序吗? 这个请求到原因是当前遇到两个问题: 1,FC30 在仅使用自定义控件的情况下,发现有一定概率触发控件短时间内触发多次按下弹起(事件间隔2-5ms,这人手是不可能操作出来的) 2,M350 eport飞控开发,主控STM32F446RET6,在linux上正常运行的飞控程序,移植到stm32f446后经常卡死在psdk库函数中(每次暂停程序都停在不同位置),最后移除自定义控件,将需要订阅的数据降到最低后程序才能正常运行。(只用了串口,因为社区说usb在M350只用于文件传输个高速通信,飞控用不上)

![Image](https://github.com/user-attachments/assets/7fc296a8-9b74-4c6f-b493-1ff048557d27) 在开启定时发送的前提下 热插拔USB串口后错误弹窗多次,最后卡住闪退 Under the premise of enabling timed sending After hot plugging and unplugging the USB serial port, an error pop-up appeared multiple times, and finally froze and flashed...

![Image](https://github.com/user-attachments/assets/081ba743-ab28-49fc-8842-e3bc8881667d) 如上图所示,这种控件可以满足各种高频应用场景,很多时候不是需要看所有的数据波形,但是需要切换着看,而serial-studio则需要在项目管理里面取切换,或者创建多个widget。 As shown in the above figure, this type of control can meet various high-frequency application scenarios. Often, it is not necessary to view all data waveforms, but it...

![Image](https://github.com/user-attachments/assets/14c14fee-4697-4288-a42b-1b9ab89e178b) 如图所示,必须要发两次查询指令才能到这个仪表盘界面。 实际上我有一些操作按钮,但是在这个界面无法选中,只能手动输入指令交互到2次以上才能自动切换到dash board界面。

所有要发送的命令都走这个过程(自定义控件修改值后也能校验了,比如slider控件) function calculateCRC16Modbus(frame,len) { let crc = 0xFFFF; const polynomial = 0xA001; for (let i = 0; i < len; ++i) { crc ^= frame[i]; for (let i = 0;...

目前的应用场景应该是mcu主动上报状态信息的,但是这主要是在调试状态下。 但是很多应用场景是需要询问的(成品的情况下), 所以希望可以设置定时发送指令,类似sscom都有这种功能,这样可以不断询问当前状态。

1,你们卖的开发板,对于的lib库也不放到示例代码里面? 2,你们的这套示例代码,在mdk 5.40版本上,报错call to undeclared function 'pvPortMalloc'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] ,原因是C99不支持隐式声明,需要包含对应的头文件,可以说是不规范的写法了。