STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

stemwin gui without external ram

Posted on August 09, 2016 at 15:04Hi, I want to use stemwin gui library with my stm32f429 board without any external ram for driving 320*240 tft LCD, so i will use mcu internal ram. when i use ''GUI_DispString(''Hello world!'')'' function , i can no...

er3481 by Senior
  • 1650 Views
  • 11 replies
  • 0 kudos

How to define call back function in USB interrupt?

Posted on August 10, 2016 at 02:16I am new to the USB libraries so this question may seems obvious.  I've worked on I2C and USART which has a user defined callback function so one can decide what to do when there is an interrupt like when receiving ...

Vu.Andy by Associate III
  • 401 Views
  • 1 replies
  • 0 kudos

Error find in libraries of STM32F4

Posted on August 11, 2016 at 10:02Hi,In file stm32f4xx.h from en.stsw-stm32068.zip #define  RCC_APB1RSTR_SPI2RST                ((uint32_t)0x00008000)#define  RCC_APB1RSTR_SPI3RST                ((uint32_t)0x00010000)is wrong !!in the document DocID...

I2C Communication Flow (Brain Storming)

Posted on August 10, 2016 at 16:04All,For the basic I2C program flow I want to send the start condition, send the address, send the data and then generate the stop condition.  You can see below that after each action I am polling for a flag to move ...

3D engine for MCU

Posted on August 10, 2016 at 22:23Hi,I plan to display some meshed terrain in 3D with an STM32F4.Does anyone has any experience with playing 3D world  on MCU ?I googled a bit, but couldn't find any library developped for MCUs, except SU3DE which see...

Kuikui by Associate III
  • 392 Views
  • 0 replies
  • 0 kudos

VL530Lx API for stm32F103

Posted on August 10, 2016 at 22:02I want use vl53L0x proximity sensor with a stm32f103 uC as host but I dont find the API for this host. I have STM32CubeExpansion_VL53L0X_V1.1.0 API downloaded but in this API, the drivers and CMSIS files available a...

Problem with polling ADC scan mode

Posted on August 10, 2016 at 17:26 Hello. I have some troubles with ADC scan mode... For example: while (1) { uint32_t adc; HAL_StatusTypeDef err; HAL_ADC_Start(&hadc1); for (int i = 0; i < 9; i++) { err = HAL_ADC_PollFo...