Ask questions, find answers, and share insights on STM32 products and their technical features.
even i grounded the ADC input pin but still i receive garbage values of >4000.Is there any problem with the configuration of adc. im currently stuck at the adc. anyone with the adc dac code help me out.
#define UART_RX_BUF_SIZE 20 #define UART_TX_BUF_SIZE 20 int8_t uart_put_char(char data); int8_t uart_get_char(char *data); volatile char uart_rxBuff[UART_RX_BUF_SIZE]; volatile char uart_txBuff[UART_TX_BUF_SIZE]; void uart_put_string(char *s...
I need to send data to thingspeak using sim7600 4G module. But don't know AT COMMAND for 4G uses HTTP. I'm newbie, please help me
I have a project using the virtual com port driver. Everything works great unless I enable "-u _printf_float" at which point I will get an error if I try to open the COM port in putty.
I have been playing around with USART. See pic....How do I clear out all the console connections?
I have a situation where I'm starting to work with the STM32CubeIDE and STM32 MCUs, and I've followed some tutorials with relatively positive success. However, I ran into an issue where I got I2C working on one project, but I cannot for the life of m...
Hello the pin definition> 7 in the stm32f1xx_ll_gpio.h file seems to be wrong: in fact when I use LL_GPIO_PIN_8 with the function HAL_GPIO_WritePin (GPIO_TypeDef * GPIOx, uint16_t GPIO_Pin, GPIO_PinState PinState)the ODR0 bit of the port concerned is...
In STM32F407, I have set bxCAN with CAN_MCR.ABOM=0 and CAN_MCR.NART=0. With the bus lines after transceiver (PHY) left open, after trying to transmit, transmitter transmits continuously forever, with CAN_ESR.LEC=0b011 for Acknowledgement Error (which...