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 rituparnasaikia

  1. R

    LPC2103 UART0 Interrupt Problem

    I have failed generating UART0 interrupt for LPC2103 in Keil Compiler. I can send data using pooling method. Bellow is the code: #include <lpc210x.h> #define Fpclk 11059200/4 #define UART_BPS 9600 /* ??????? */ #define LN 30...
  2. R

    Removing shadow effect in 7 segment display

    You can follow the bellow steps Step 1. Clear display data add delay Step 2. Select the 7 segment display for display Step 3. Put the data for the display and add a delay Step 4. Go to step 1 The delay will depend on the hardware also. you may go for try and see
  3. R

    Problem with connecting to server with SIM300C

    SIM300C CONNECT FAIL Who is the service provider? Can you send me the command detail ? take a screen shoot and send it.
  4. R

    Where can I purchase Low Cost GSM Modules

    For GPRS Modem call Mr. Prashant He is giving SIM900D based GPRS modem. His company is located in bangalore, India. Mobile number: 9845151335
  5. R

    Problem with connecting to server with SIM300C

    SIM300C CONNECT FAIL at+cipshut SHUT OK at+cgatt=1 OK at+cgdcont=1,"IP","TATA.DOCOMO.INTERNET" OK at+cdnscfg="10.124.94.7" OK at+cstt="TATA.DOCOMO.INTERNET" OK at+CIICR OK at+cifsr 182.156.104.161 at+cipstatus OK STATE: IP STATUS at+ciphead=1 OK at+cdnsorip=1 OK...
  6. R

    LM35 industrial applications

    It will depend on the application. It supports -50 degree to 150 degree Celsius. There are different variants of LM35. Go to **broken link removed** for detail information.
  7. R

    PROTEUS is not compatible with windows vista?

    PROTEUS Install windows XP in your system.
  8. R

    porting eCOS to AT91SAM7A1

    It will take One week to 15 days of time depending upon the experience.
  9. R

    epson printer M-190G and interface board IF-190Gp

    Why do not you try with ULN chips? It is very easily available here.
  10. R

    DC to DC converter, Vin=24V to Vout=450V P=3000W

    TI is having kind of solutions. You can use a DSP for DC to high frequency AC conversion and then to DC power. The DSP will take care of your PWM.
  11. R

    LPC2388 UART setup for even parity doesen't work

    I want to set LPC2388's UART0 for the bellow Baud Rate : 57600 Parity : E Data Bit : 8 Stop Bit : 2 Flow Control : None I have done it in this way PINSEL0 |= 0x00000050; // Enable TxD0 and RxD0 U0LCR = 0x9F; Fdiv = ( Fpclk / 16 ) /...
  12. R

    GNU GCC Toolchain for ARM7

    Which is the best GCC GNU tool chain for ARM 7 development on Windows and why it is the best ?
  13. R

    LPC2388 UART in Interrupt mode

    Have any one written code for LPC2388 in interrupt mode?
  14. R

    setting details for LPC23xx UART port 0

    LPC23xx PINSEL0 |= 0x00000050; U0LCR = 0x9F; Fdiv = ( Fpclk / 16 ) / Baudrate; U0DLL = Fdiv % 256; U0DLM = Fdiv / 256; U0FDR = 0x00; U0LCR = 0x03; U0FCR = 0x07; Added after 33 seconds: The above setting works fine with buffer enebled
  15. R

    how can I redirect the printf() output port

    I am using Keil uVision 3. I have done it a few years back but forgot how to do it .

Part and Inventory Search

Back
Top