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 ZeDingo

  1. Z

    converting binary image (8 bits) into Decimal image?

    There's a number of ways to do that based on the coder's preference. Pseudo-codish, take with a grain of salt. I only just got out of bed. // This is just a simple converter that takes a binary string and converts it to a char array #include <string.h> #include <math.h> int i = 0; int length...
  2. Z

    question about loops in C

    I agree wholeheartedly. There are times to use the combined operators, times they MUST be used, and this is not one of those times.
  3. Z

    Atlas, Process is interrupted by signal SEGV

    I do PC programming, so I can't be a lot of help with this, but I doubt the two are terribly dissimilar. A seg fault is an error in which your program has tried to access memory it doesn't have permission to access. You may have a loop that's stepping outside of its allowed memory: char...
  4. Z

    Virtuoso 6.1.4: Technology files

    Have you renamed an alias related to your technology files? https://groups.google.com/forum/#!topic/comp.cad.cadence/sQ6Gm2qmUhc
  5. Z

    Atlas, Process is interrupted by signal SEGV

    SIGSEGV means your program caused a segmentation fault. I don't know anything about an MSM, but you should double check your code.
  6. Z

    GPRS Datalogger to webpage

    A simple HTTP POST to a PHP script would get the data to your site. Example: http://yoursite/log.php?string=stuff+goes+here&auth=blah Displaying that data depends on your data.
  7. Z

    Help for serial port programming in vb.net

    In .NET you can access serial ports through System.IO.Ports: SerialPort A less complex example, showing how to receive a string: https://msdn.microsoft.com/en-us/library/7ya7y41k.aspx The constructor will throw System.IO.IOException if the COM port doesn't exist or cannot be opened. I don't know...
  8. Z

    Android applications in PC

    I usually use Bluestacks for Android-only stuff, since my phone was destroyed. I don't think it's a "complete" emulation, with as fast as it runs, but it may have just been the architecture emulation in the Android SDK slowing things down.

Part and Inventory Search

Back
Top