Resolved! Merry christmas to everyone around here.
Thanks for all the support, see you after holidays.:evergreen_tree: :snowman_without_snow: cheesy caption
Ask questions, find answers, and share insights on STM32 products and their technical features.
Thanks for all the support, see you after holidays.:evergreen_tree: :snowman_without_snow: cheesy caption
uint8_t tx_data[2] = "AT"; uint8_t rx_data[10]; HAL_Delay(1000); while (1) { HAL_UART_Transmit (&huart1, tx_data, sizeof(rx_data) , 250); HAL_Delay(500); HAL_UART_Receive(&huart1,rx_data, 20,1000); HAL_GPIO_TogglePin (GPIOA, LED_Pin); HAL_Delay(...
The microcontroller will be doing little else besides some very light processing on the audio data. The I2S source has a single MCK, SCK, WS, and 4 stereo outputs (3 of which will be used), and the I2S source can ONLY function as a master device, le...
HI: STM32F103 STM32CUBEMX V4.25.1 As shown in the figure, I read one byte in 1line mode, but sent five bytes, four more than I wanted.thanks
Hello,I am working on Nucleo-H745ZIQ board. I have to interface the DAC to it.And i have to get the data in CSV file .And after that I have to read the file and dump through SPI and generate the waveform.In my board I dont have the SD card .Then usin...
I don't know how to configure the config options of debug,using openocd debug. And I can't find nrf52.cfg file in system workbench, it seems that a interface file is also needed.So,how I should configure this ?In other words,"-f" and "-s" how to choo...
Hello, if configure stm32g4 in up-down counting mode, does it support external events,such as external pin event or analog comparator events?for example ,rising edge of analog comparator event set TA1 output in up count directionand the same event re...
uint16_t val[200]; unsigned char data[20]; uint32_t AVG_val[10]; uint16_t val_2=0; unsigned char count=0; double rms=0.0; uint32_t square = 0; double mean = 0; double root=0.0; int arr[]={15,78,59,85,56}; int n=100; int main(void) { HAL_Init(); S...
I'm using STM32 cube IDE for STM32F030CC uC, in this the baud rate of the USART is configured as part of the *.inc file, but my requirement is have to change the baud rate during the run time based on the user input, means, there are 6 USARTs sent in...