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 aarmalo

  1. A

    Porting xenomai rtos to arm cortex m3

    According to the XENOMAI RTOS webpage, the intention is to give to real time capabilities to the Linux Kernel. If you want something similar to Linux but for your board give a try to NuttX http://nuttx.org/
  2. A

    Program to write in a terminal every period of time

    Just use a python script that load the commands from a file Commands.txt Abc def ghi klmn import os import serial import time fcmd = open("Commands.txt") commands = fcmd.read().split("\n")[:-1] cmd_len = len(commands) # Serial Port open ser = serial.Serial('COM3',38400...
  3. A

    Export data from EXCEL to UART

    The easy way is just to convert to CSV as the previous posts, but there are out there libraries that can help you to read the EXCEL files As example in python you can use the next lib https://openpyxl.readthedocs.io/en/default/
  4. A

    how linux are used ?

    Backtrack - https://www.backtrack-linux.org/
  5. A

    [Text Editor] Text Editor for Large Text files

    try cream (http://cream.sourceforge.net/) Can be installed from the repository of your Linux distribution
  6. A

    regarding ubuntu application

    Check this tutorial https://www.nsnam.org/docs/release/3.14/tutorial/singlehtml/index.html
  7. A

    Disable access for other user

    chmod 700 /your_folder 7 -> wrx owner (write, read, execute) 0 -> --- group 0 -> --- others
  8. A

    [Moved]why linux does not get infected

    Re: why linux does not get infected Also read **broken link removed** in my opinion one of the best reading source. The biggest security hole in any OS is sitting between the chair and keyboard, MAC guys learn it (I hope), and also many Ubuntu users when they installed a fake screensaver...
  9. A

    Spartan-3E problems PicoBlaze program source assembler code LCD display rotary button

    You can open psm files with any text editor, the control.vhd was generated by picoblaze assembler that you can find in PicoBlaze source (from Xilinx download PicoBlaze), in the source you can find interesting things, like JTAG Loader. With JTAG Loader you can change the PicoBlaze program without...
  10. A

    [SOLVED] C++ error...floating point error abnormal program termination plz help

    The problem is that you are trying to get mbase_pop==hbase_pop For example: #include <iostream> using namespace std; int main(int argc,char **argv) { float hash_pop,hash_growth; float mad_pop,mad_growth; int decades = 0; cout<<"Initial state of hash group (Population growth)...
  11. A

    Where can i get Serial.h library for my devc++??

    Also you can give a try to LnxComm (**broken link removed**) works on Windows and Linux (Blocking, Non Blocking, Timeout, Events) **broken link removed** Blocking : **broken link removed** Non-Blocking: **broken link removed** Timeout: **broken link removed** Event: **broken link removed**
  12. A

    any synthesis tool for linux ubuntu 11.04 natty narwhal?

    Download from Debian -- Details of package verilog in lenny (choose your architecture --end of page) Open a terminal if icarus verilog is installed then sudo apt-get remove verilog iverilog Now go to download dir and type sudo dpkg -i verilog_0.8.6-1_i386.deb <-- for x86 sudo dpkg -i...
  13. A

    any synthesis tool for linux ubuntu 11.04 natty narwhal?

    I think that ftp://icarus.com/pub/eda/verilog/v0.8/verilog-0.8.7.tar.gz But before I forget, also you can install old version of packages inside a jail using deboostrap and schroot, there alot of tutorials searching in google (in case can't compile icarus v0.8 in Ubuntu 11.04)...
  14. A

    any synthesis tool for linux ubuntu 11.04 natty narwhal?

    Here is v0.8 ftp://icarus.com/pub/eda/verilog/v0.8/
  15. A

    any synthesis tool for linux ubuntu 11.04 natty narwhal?

    If want a stable enviroment to work, you need to install LTS version, I have ISE (10.x and 12.x) in Ubuntu 10.04 and works well, but I have time that I don't use ISE because have my own scripts to simulate (with ghdl) and synthesis. $ cat tb.sh #!/bin/sh PUNISIM='' WORK_DIR="work"...

Part and Inventory Search

Back
Top