X-CUBE-AI package 10.0.0 missing documentation
Hi,Just installed X-CUBE-AI package 10.0.0 and observed that documentation is missing:
Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
Hi,Just installed X-CUBE-AI package 10.0.0 and observed that documentation is missing:
MX_GPIO_Init(); MX_SPI2_Init(); MX_USART2_UART_Init(); MX_FATFS_Init(); /* USER CODE BEGIN 2 */ W25Qxxx_Init(); fres = f_mount(&fs,"0:",1); if(fres == FR_OK) { v=9; fres = f_open(&fp, "info.txt", FA_OPEN_ALWAYS|FA_WRITE); } else { v=2;...
Hi, I'm Lucy. I've come across a difficulty that I can't solve. I was hoping you could help me see what the problem is. One of my programs uses IAP. The APP program starts at 0x8020000. After the APP program worked properly for a while, the APP progr...
Hello,I'm working on a low-power application using the STM32L073 microcontroller and aiming to achieve a current consumption of around 3.5 µA in Stop mode. Here are the steps I've followed so far:Power Connections: I'm powering the microcontroller di...
Hello Community!Recently i have started working on USB MSC using RTOS. Im using USB HOST Library version 3.5.2 and latest version of CubeMx.When im generating the code by selecting FreeRTOS CMSIS V2 and pulging my USB drive to CN13 connector then the...
I am using stm32f756zg. In which i configure LWIP with FREERTOS cmsisv2. I am getting hard faults when ping devices from other devices.It works fine when I change FREERTOS cmsis v1 and increase the default task stake.
Hi I am using the STM32F7 MCU to use a usb. I can get the USB connected however, when I try to run debug, the application hard faults, and I can't trace the error. I was hoping to get a reference to a tutorial from STM regarding reading/writing to US...
i'm trying to learn about ST USB LIBRARY AND CLASSES . i tried to run an example on my stm32h7a3ZI-Q board but i didn't succeed . i tried the HID class to make the board act like a mouse . i really copied the MOOC tutorial video step by step and the ...
I am using the STM32H7B3I-DK and trying to read and write from an SD card using SDMMC1 with TouchGFX running (also FreeRTOS). I have solved a NO_FILESYSTEM ERROR described here. While this allowed me to mount, open, and write to a file, I still get N...
I've setup a custom USB device with multiple interfaces on custom hardware using a ULPI. The USB code is derived from the code generated by CubeMX.On interface 0 I have endpoint 1 in and outOn interface 1 I have endpoint 2 in and outOn interface 2 I ...