
sd卡大概存了几百g之后,能生成文件,但是存不进数据,程序卡在f_write()中的create_chain()中的for循环里 for (;;) { ncl++; / Next cluster / if (ncl >= fs->n_fatent) { / Check wrap-around / ncl = 2; if (ncl > scl) return 0; / No free cluster found? / } cs = get_fat(obj, ncl); / Get the cluster status / if (cs == 0) break; / Found a free cluster? / if (cs == 1 || cs == 0xFFFFFFFF) return cs; / Test for error / if (ncl == scl) return 0; / No free cluster found? / } |
STM32F405的ADC功耗参数不理解
STM32F405RGT6 ADC2+TIM4触发+DMA(DMA2_Stream2_CH1)+DMA中断会死机(取消中断后完全正常)
CUBEIDE1.19.0
stm32支持canfd和dma结合使用吗
NUCLEO-F401RE板卡,连接USB,在KEIL下可以找到ST-LINK仿真器,也可以下载代码。在电脑上看不到NODE_F401RE的磁盘,有知道是什么原因?
程序进入HardFault_Handler求解
STM32CUBEIDE
This example describes how to configure the FMC controller to access the SDRAM memory in low power mode
STM32407 使用串口闲时中断+DMA方式接收最大接收字节是多少
USB_CDC_HOST 标准库里边USBH_DeAllocate_AllChannel()函数的疑问?