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 thedesolatesoul

  1. T

    how to make vb send ascii code via usb bluetooth..

    What sort of bluetooth device is it? I dont suppose it registers as a COM port so I dont think that the MSComm control can be used. Does it use an specific DLLs for wrapper functions?
  2. T

    pls gimme the solution(asked in interview to me)

    actually i think that the 18MHz flip flop should be able to handle the 10MHz input with no problems at all.
  3. T

    unsigned and signed data in Verilog?

    Kindly clarify what results you are getting and what is the issue?
  4. T

    Communication process of GSM modem and its interfacing with microcontrollers

    Re: Regarding GSM modem Do u have the datasheet of the module? U need the datasheet to find out about the pin connections and signalling b/w the microcontroller and the module After that u can simply use AT commands to make calls or read sms etc.
  5. T

    Communication process of GSM modem and its interfacing with microcontrollers

    Re: Regarding GSM modem Depends on what sort of modem u r using...
  6. T

    Where to find opportunities to get freelance projects?

    Re: Work at home? rentacoder.com is a very good way to start also try these: elance.com offshoreexperts.com getafreelancer.com getacoder.com
  7. T

    synthesizeable verilog code

    Code looks perfect to me. What error are you getting and what synthesizer are you using?
  8. T

    send at command using Vb

    vb to send at commands 1) Please add a ListBox to your form. I used it simply so that I could list all the messages in the phone. Also make Text1 multline (in the properties) and add scrollbars too. 2)When I send AT+CMGL, the result is not OK. Infact, the phone sends a list of all the messages...
  9. T

    Real time Graphics in VB Help ME

    You can use MSComm to read integer values from the serial port. You dont need to worry abt the binary conversion. Then you can use a picturebox to show the graph but try to keep the dimensions low. VB pictureboxes are memory hogs and can be really slow.
  10. T

    Help me writing a Matlab code for analyzing chirp signal

    Re: Matlab Help Why dont you use the Matlab help? It pretty simple I think. Generate the chirp signal then take its FFT and then plot it t = 0:0.001:2; % 2 secs @ 1kHz sample rate y = chirp(t,0,1,150); f=fft(y); plot(f)
  11. T

    send at command using Vb

    at commands in vb Okay potetojb, I've checked your program and there are a few things to modify although its a very well written program. When you set the InputLen to Zero, that means that the MSComm control will read the whole line at once so you dont need to worry about buffer sizes. You...
  12. T

    send at command using Vb

    mscomm sms cmgf have you checked what value you are getting in buffer$? try single stepping to debug and check what o/p u are getting on each line
  13. T

    send at command using Vb

    at commands vb If the device is detected as a modem, you need to know which COM port it is attached to. Go to Device Propeties and check the properties of the detected modem and check which port it connects to. Then in VB add the MS Comm control, and set the properties. I suppose you should...
  14. T

    How to write a coding for imaginary number and decimal point

    Re: Verilog coding question I suppose the best way would be to implement a complex number multiplier yourself. You would have to store the real and imaginary parts in separate variables and use both of them when you need to manipulate them.
  15. T

    who has some example about imaging processing programme ?

    Re: who has some example about imaging processing programme I'm not sure what you mean by image processing program in Verilog. However I did make a JPEG Encoder for Image Compression in Verilog. Would that help?

Part and Inventory Search

Back
Top