Low cost 16bit ADC
Posted on February 11, 2015 at 13:01Hi, Does anyone familer with Low cost microcontroller with 16bits ADC (below 1.5$) ? Thanks
Ask questions, find answers, and share insights on STM32 products and their technical features.
Posted on February 11, 2015 at 13:01Hi, Does anyone familer with Low cost microcontroller with 16bits ADC (below 1.5$) ? Thanks
I used the code below but not working , did you find the solution ? void SetPinTristate(GPIO_TypeDef *GPIOx, uint16_t GPIO_Pin) { GPIO_InitTypeDef GPIO_InitStruct = {0}; GPIO_InitStruct.Pin = GPIO_Pin; GPIO_InitStruct.Mode = GPIO_MODE_INPUT; // Swi...
Does anyone have PCB Wiring Guidelines for the STM32H743XGH6?
Hello, I am trying to write to the option byte area of an stm32u5g9vjt6q using the built in bootloader over the canFD protocol. I have verified I am able to erase and write my programs to flash over canFD using the built in boot loader so I know tha...
Hi ST team,I'm implementing DShot protocol with Timer + DMA. I use 4 PWM channels to generate control signals for ESC. Timer and DMA's parameters are same for all PWM channel. But PA3 (TIM2_CH4) does not work the same as other PWM channels. It only t...
Hi Everybody! I confronts a very interesting problem at my project. Details above:Hardware: NUCLEOG071RBAttached the IOC configuration. Control the SPI CS pin by software. I got small 4-8us signal spikes all GPIO, SPI, I2S pins. SPI and I2S powered ...
Hi, I want to go to sleep/stop mode with STM32 and wake on interrupt. After last interrupt it should wait for 10sec and go back to sleep. But I see an edge case where interrupt could occur just before going to sleep/stop mode.How do I handle interrup...
I have a question regarding voltage level I/O compatibility for STM32 MCUs. The sensors providing analog output within a 0–5V range, while those with digital output at either 0V or 12V. Although some GPIO pins on the MCU are 5V tolerant, they are sca...
I conducted some test in case the option bytes in the STM32L474 (Nucleo 64 board) are set incorrectly for my application. Note HAL is not used (it's a strict bare metal application since this is a home experiment to reduce power consumption to the ba...
#include "stm32f10x.h" #include "interrupt.h" void intr_config() { RCC -> APB2ENR |= RCC_APB2ENR_IOPAEN; RCC -> APB2ENR |= RCC_APB2ENR_IOPBEN; RCC -> APB2ENR |= RCC_APB2ENR_IOPDEN; RCC -> APB2ENR |= RCC_APB2ENR_AFIOEN; GPIOA ->CRH |= GPIO_CRH_MODE...