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 imran_199127

  1. I

    Using 18f452 send/ receive sms to GSM A900 , mikroC

    0x1A is same as 26 in decimal. Are you sure that you don't need a delay between UART1_Write(2) and UART1_Write(13)
  2. I

    what is the difference between DSP and CPU?

    Whenever you need to process signals, be it audio/image/video or other signals in real-time you need a DSP for that, especially if you're doing on an OS hosted platform where you can use DSP like a peripheral device. BeagleBoard xM is one example where it has a C6700 (I guess?) DSP as a...
  3. I

    89c51ed2 read write byte on SD card. required running code. please please

    If you're using your own SPI routines then you should be good to use dhrmanitech's FAT32 code, download the example and use it. I used it in the past and got it working on PIC and AVR both. 8051 shouldn't therefore be a big deal. You just need to change some register names and values and...
  4. I

    MPLAB XC8 Warning meaning ??

    For all string transmissions if you have const char* input i.e. input like "Hello World" instead of pointer use pointer type cast to resolve the issue, for e.g. LCD_Out_Cp((unsigned char*)"Hello World!"); I see that your Line 17 is wrong, you need to pass a pointer to LCD_Out_Cp and hence only...
  5. I

    what is the difference between DSP and CPU?

    MAC and FMAC instructions are peculiar to DSPs. A DSP has a very high Integer/Floating-Point calculation throughput compared to a normal CPU, so DSP is basically processor specializing at doing calculations on Integers, floats, doubles and vectors of these types i.e. it can perform add/multiply...
  6. I

    Voltage Regulation Circuit

    You could try capacitor voltage transformer and then use the very popular 7805 series voltage regulator or any other DC-DC voltage regulator. If you need a high efficiency then DC-DC Buck converter is what you need
  7. I

    89c51ed2 read write byte on SD card. required running code. please please

    I have a lightweight and running code for SD Card r/w using SPI with FAT32 but that's on ATmega. You can modify registers and vavlues in SPI related functions or you could provide your own SPI read/write byte function to the code...
  8. I

    [Moved] Oscillator Frequency of Microcontroller

    A little elaboration is required, what is it that's required at-least the frequencies that you need to carry out that task. horace1 suggested the right thing to do which is helpful most of the times. Use any CCP interrupt to get that done. You could use 3 different timers with different...

Part and Inventory Search

Back
Top