Is MBED TLS planned to be implemented to L4 in near future?
If yes, when? We started to moving from F4 to L4 and we very miss this.Thanks!
If yes, when? We started to moving from F4 to L4 and we very miss this.Thanks!
I'm using the NUCLEO-F767ZI board. I can get PWM to work with any timer except TIM9. The debugger shows TIM9's ARR, PSC, CCR having the values i set them to. After the call to HAL_TIM_PWM_Start (&htim9, TIM_CHANNEL_2) is made, the CEN bit in CR1 is s...
Hello,is there any way to find out by the CMSIS headers if some given Timer has the RCR (Repeat Count) Register? Is it possible to find out at runtime? Or do all TIM1/8/20 15/16/17 Timers do have the RCR register?
HAL_RTC_GetTime(...) does not read the daylight saving info from the RTC. (in our case on STM32L476)Is this a bug or a feature?
Helloi configured the spi interface as follows (8 bit data size):static void MX_SPI1_Init(void) { /* SPI1 parameter configuration*/ hspi1.Instance = SPI1; hspi1.Init.Mode = SPI_MODE_MASTER; hspi1.Init.Direction = SPI_DIRECTION_2LINES_RXONLY; ...
Hi, guys. I've been having, a really strange problems with my project and i need anybody help. I'm using here a microcontroller STM32H743VI revision X. I made a custom bootloader with USB MSC and the problem is, work everything correct with the boot,...
Is there an overview with all possible URB-states that are returned by the USB_Host function "USBH_LL_GetURBState(>>Bulk-In-Pipe<<)"I figured out some of these, but not all of them:URB_IDLEURB_DONE - Answer receivedURB_NOTREADY - NAK received URB_NY...
Dear Members,I tried to send SMS with SIM7600SAH, the code was working but now it's giving me intermittent result...The code//Clear buffer HAL_UART_Transmit_IT(&huart1,(uint8_t*)&aTxBuffer4, sizeof(aTxBuffer4)); HAL_Delay(5); HAL_UART_Transmit_IT(...
STM32F10Xxx USB endpoint registers contain several bits that can only be controlled from software by toggling their value. For example, from RM0008 section 23.5.2, Endpoint-specific registers, USB endpoint n register (USB_EPnR), n=[0..7]:Bits 13:12 S...
Hello,I have problem using ADC with DMA (I obtained the same problem using Interrupts). I have stable VDDA=3.3 V from LF33. On ADC channel 9 (PB1) I have voltage from 0 to 3.3V from potentiometer. When I set for example 0.35 V(ADC value about 400) an...