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 AlexBaraba

  1. A

    intel xeon server hardware

    Found supermicro. They have distributors in my country. barebone Super Micro Computer, Inc. - Products | SuperServer | 1U | 8016B-6F 3120e E7520: 4core 800e E7530: 6core 1290e ram memory 1066 MHz ecc: 2GB == 98 - 110e 4GB == 173 - 200e
  2. A

    intel xeon server hardware

    Where can one get latest xeon 7500 -family server components for his small business.Price is the main concern. According to Your experiences who can offer acceptable prices.
  3. A

    Alternative to logging

    Hi all, I always use a log statements on important places in program. As it turn out it is only method that i have used and I can`t think of something to replace it :?: So my question is: Is there some other method that can do better job ?
  4. A

    Suggestion about writing windows driver

    There is one simple solution. Get one of those usb to serial converters. Usualy they have https://www.ftdichip.com/ component. This way you can keep pc code simple. I have some c code to show if this will do for you.
  5. A

    How can I transfer data using web?

    Hi emreozer, The fastest solution : Python Library Reference : 11. Internet Protocols and Support : SimpleHTTPServer documentation page: http://docs.python.org/library/simplehttpserver.html Example: **broken link removed** http://msdl.cs.mcgill.ca/people/julien/Python%20Server%20Code...
  6. A

    how to add DLL files to MS VC++ and use them?

    call dll vc++ Hi elrayes, Could be done with LoadLibrary(), GetProcAddress(). If function pointer is valid (!= NULL) you simply call dll function. lpProcName parameter is name of function stored in dll. consult MSDN. Best regards, Alex
  7. A

    help on hardware programing using 'C '

    Interfacing Parallel/Serial port is trough dedicated registers for that device. Those registers are mapped to specific memory locations : parallel port(LPT) : 0x378, 0x278, 0x3bc https://en.wikipedia.org/wiki/Parallel_port so writting value to 0x378 unsigned char * pointer = (unsigned char...
  8. A

    how to earn money through internet

    You can become GoldFarmer. Sit all day playing online MMORPG and selling in-game currency like collected items and similar stuff on e-bay. Or you can put your brain-power to use, find outsourcing job somewhere in USA.
  9. A

    Lookinf for a very simple tool to create a very simple app..

    Re: Lookinf for a very simple tool to create a very simple a Hi Eda, I would suggest to use Borland C++ Builder 5 . That tool is kind to beginers and is very easy to make simple applications. You start with one window and just write app logic. put two buttons on main window. modify properties...
  10. A

    Suggestions of low cost cameras for robot's vision

    Re: Camera- suggestion Hi sreejith, We used CMUcam2 on our robot last year (https://www.cs.cmu.edu/~cmucam2/). It is low resolution camera module. It have very low motion blur and some image processing functions built in. If you need more resolution you should consider puting entire mobile...
  11. A

    Positioning system based on accelerometer sensor

    If I use other way in determing current angle, there is no use of second axis readings from my sensor. I can just use acceleration read from forward direction oriented axis. Is there some way that I can calculate angle from data i get out of acceleration sensor ?
  12. A

    Generating Random Number of 0-7 range

    Re: Generating Random Number You didn`t give much details. this is code for c language : #include <stdlib.h> void main() { int randomNumber; randomNumber = rand() % 8; // // do proccessing of random number ... // }
  13. A

    Positioning system based on accelerometer sensor

    this would be an ideal solution if sensor could give me information that is accurate enough. Difficulity with other solutions is that there is no complete product on the market for positioning. You have different type of emiters and receivers (to skip the details) which are 4 hardware steps from...
  14. A

    Positioning system based on accelerometer sensor

    Is there any way to reduce cumulative error ?
  15. A

    Positioning system based on accelerometer sensor

    Hi Prototyp_V1.0 I am using ADIS16201 sensor. It have resolution of 0.5 mg, and i am planing to read sensor on 1 KHz interval. system will be integrated in robot that will move on table(playing ground) with fixed dimensions. table is flat and in room environment. Robot movement will cause...

Part and Inventory Search

Back
Top