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 aospinas

  1. A

    How to overwrite information inside file local system? C/C++

    It is easy you would charge file to RAM (array, count the line of file for array size), after you change the value, you would write the file again. int line_count(FILE *fp) { int count=0; char letra; letra=getc(fp); while(!feof(fp)) { if(letra=='\n') { count++; }...
  2. A

    Fedora cluster setup

    I suggest https://www.rocksclusters.org. is based on Redhat enjoy
  3. A

    Applicatoin development for Android

    I think that : Santoku-linux can help too, Santoku includes a number of open source tools dedicated to helping you in every aspect of your mobile forensics, malware analysis, and security testing needs. You can decompile application to learn. Enjoy
  4. A

    Need c code about number system converter

    This is the function: input: string (texto) ouput: int int deBinario(char * texto){ int longitud = strlen(texto); int valorMenosSignificativo = texto[longitud - 1] - '0'; texto[longitud - 1] = 0; if (longitud == 1) return valorMenosSignificativo; else return...
  5. A

    [need help]'bout GA and read .txt files on MATLAB

    Use fopen and fscanf function enjoy
  6. A

    Difference between structures and arrays

    A structure is a collection of one or more variables, possibly of different data types... Array has same data type. To copy structure content into another structure is easy a=b; In arrays "for" is mandatory for copy (memset is possible). Enjoy
  7. A

    please help me with this LaTex problem

    This can help you: (LaTeX symbol classifier) Detexify LaTeX handwritten symbol recognition enjoy
  8. A

    file read operation question

    strtok() work on C. (linux plataform) What do you save in a[k]? What is the format of the file?
  9. A

    file read operation question

    Use strtok() for example #include <string.h> ... char *token; char *line = "LINE TO BE SEPARATED"; char *search = " "; /* Token will point to "LINE". */ token = strtok(line, search); /* Token will point to "TO". */ token = strtok(NULL, search); enjoy
  10. A

    Monitoring internet connection

    You can make a script using the ping command and run it every minute scheduled in the crontab to see if internet failure. ping -c4 router | grep 'received' | awk -F',' '{ print $2}' | awk '{ print $1}' where router is router ip. For example. ping -c4 192.168.1.1 | grep 'received' | awk -F','...
  11. A

    Monitoring internet connection

    Use bash scripting is very easy: see commands: dig (DNS resolution), ifconfig, ping, crontab Enjoy
  12. A

    Java in China Mobile phone

    I Need Your Help Please Tell Me How Can I Install Java In China Mobile Phone? regards
  13. A

    fopen for creation or modification

    false mode w w Create for writing. If a file by that name already exists, it will be overwritten. is better FILE *fp; fp=fopen("filename.txt","r+"); //Open an existing file for update (reading and writing). if(fp==NULL) //If a file by that name NO...
  14. A

    CENTOS OS ---SATA DRIVER PROBLEM ---Please Help

    centos sata driver If can not "see" the SATA Hard Disk ... changing the SATA setting from AHCI to IDE emulation on BIOS enjoy
  15. A

    Cannot display files with KGhostview!

    Re: KGhostview! convert a pdf (other solution!!!) $ ps2pdf file.ps file.pdf enjoy

Part and Inventory Search

Back
Top