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 MicroStack

  1. MicroStack

    Unable to turn on pins of stm32F446RE

    I don't think so.. you need to set up the clock in either case.
  2. MicroStack

    Unable to turn on pins of stm32F446RE

    The clock might be running at a very low speed and it is very clear from the code snippet that you haven't set up the processor clock. Initialize the processor clock first and then enable the clock for the peripherals. void SysClockConfig (void) { /*************>>>>>>> STEPS FOLLOWED...
  3. MicroStack

    ADC ---> Memory uDMA tm4c123

    I don't See any "GPIOPinTypeADC" is being called. Select the analog ADC function for the pins which you are using, consult the datasheet to see which functions are allocated per pin for Example: SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOE); GPIOPinTypeADC(GPIO_PORTE_BASE, GPIO_PIN_3);
  4. MicroStack

    Simulink Flash ADC

    You can use a funtion block to convert the scalar integer to the binary at the output: >> dec = 10; >> dec2bin(dec) ans = '1010'

Part and Inventory Search

Back
Top