Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by smeraj580

  1. S

    is my code correct or not for lcd interfacing with stmf072c8t6 mc ??

    #include "stm32f0xx.h" #include "stm32f0xx_gpio.h" #include "stm32f0xx_rcc.h" void LCD_GPIO_Init(void); void LCD_Init(void); void LCD_SendCommand(uint8_t); void Delay(uint32_t); void LCD_GPIO_Init(void) { GPIO_InitTypeDef GPIO_InitStructure; RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOA...
  2. S

    i unable to read two adc channels(vref and external voltage) simultaneously please help

    hello there, my requirement is the code Hardware is stm32f072c8t6 ide is coo cox coide USING Standard peripheral library First of all i am trying to read two channels ADC_channel_0 and Vref_Channel , the provided code may not be understandable because i am beginner.. the adc_channel_0 is...
  3. S

    i unable to read two adc channels(vref and external voltage) simultaneously please help

    yes its stm32f072 ide i am coo cox ide . okay i'll be careful next time onwards please sir help me out with this i am stucked here since 5 days
  4. S

    i unable to read two adc channels(vref and external voltage) simultaneously please help

    int main(void) { Init_Prcs(); while(1) { ADC_StartOfConversion(ADC1); while(!ADC_GetFlagStatus(ADC1,ADC_FLAG_OVR)); } } void Init_Prcs(void) { SystemInit(); SystemCoreClockUpdate(); Hal_AdcInit(); } void Hal_AdcInit(void) { GPIO_InitTypeDef...

Part and Inventory Search

Back
Top