STM32L4 ADC configuration
Posted on June 13, 2016 at 09:52RM datasheet specify that ADEN must be 1 before configuring CFGR, SQRx ... HAL_ADC_Init library configures these registers with ADEN= 0 Which procedure is the right one ? #adc-config
Ask questions, find answers, and share insights on STM32 products and their technical features.
Posted on June 13, 2016 at 09:52RM datasheet specify that ADEN must be 1 before configuring CFGR, SQRx ... HAL_ADC_Init library configures these registers with ADEN= 0 Which procedure is the right one ? #adc-config
Posted on June 09, 2016 at 11:57Hello masters , Is there any kind of way or register that PWM counter is counting up or down in center aligned mode? I need to control the system depends on up counting. So i have to check timer counts up or down . ...
Posted on June 13, 2016 at 16:56 Hi everybody. I have an stm32f4 micro trying to communicate with device via UART. I want to receive with interrupts and possibly, based on some conditions, stop the reception process (i.e. if some time exp...
Posted on June 12, 2016 at 22:17HiI am going to develop a customize board based on STM32F072RB IC. I am searching for some application circuit, but couldn't find any. However I got some help from STM32F0 Discovery board schematic but it's confusing....
Posted on April 24, 2016 at 14:02Hi,I have configured my stm32f756xx mcu to run LTDC. Everything works fine. However when I activate the RNG clock like so:__HAL_RCC_RNG_CLK_ENABLE();I seem to get a myriad of red pixels (static snow) on the screen (w...
Posted on June 13, 2016 at 18:50Hi.I communicate between two F303 parts over UART. Both modules are clocked with 72 MHz. USART1 on one part is on APB2, which runs at 72 MHz. On the other part, USART2 is used, which is on APB1 (36 MHz). But USART2 is...
Posted on June 08, 2016 at 11:32 Hi, I have a problem with CAN after a bus-off condition. When CAN state changes to bus-off, I set the CAN operation mode to SLEEP mode. After a few 100 ms I try to bring the CAN bus into NORMAL mo...
Posted on June 10, 2016 at 13:01 I found a blocking delay function on the Internet (http://thehackerworkshop.com/?p=1209 ) and I made some small changes to it: void delay(Delay_t delay_) { unsigned int loopsPerMicrosecond = (unsigned...
Posted on June 13, 2016 at 16:56This is in the http server example in the CubeMX firmware, V1.4.0 for F7.I'm modifying a web page from the original in the DynWebPage function which has a PAGE_START and a PAGE_BODY both specified at 512Bytes.I want t...
Posted on June 07, 2016 at 09:36Hi, are there any tutorials for getting an HTTP server working from cube firmware?I found the demo project in the F7 cube firmware V1.4.0 which displays which tasks are running on FreeRTOS. Works fine, great. Now I ...