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 alpha_man

  1. A

    Looking for some examples of EE design documents

    Re: Design Document Request Ok, more specifically. If I was asked to design a product, given some vague specifications. And I needed to produce something more concrete that could then be used to produce production code for the device, does someone have any examples of such documents they can...
  2. A

    Looking for some examples of EE design documents

    Design Document Request I am looking for some examples of EE design documents for study. Proper professional quality examples is what I would like. If anybody can help I would appreciate it very much. alpha
  3. A

    Reverse iterator for a list (C++)

    If you look closely at the definition of your function template <class T> void displayListRev(const list<T> &lst) You have declared the parameter lst of type const. Therefore to iterate over the list you must use one of the const iterators, i.e. list<T>::const_reverse_iterator rl; This should...
  4. A

    How2 define all the string into a lookup table??

    Try using the following: const char *text [size] [language_number] ={ { "thank you" , "aligator"}, {"goodbye", "sayonara"}, .... ... ..}; Note the "const char *", as each element is a pointer to an to the first element of an array of char.
  5. A

    ST10 PowerUp Problem with my ST10F168 Hardware

    re: ST10 PowerUp Problem > I have a big PowerUp problem with my ST10F168 Hardware. > I have designed a board with a ST10F168 by my self. It works with a > 16Bit Non-Multiplexed Bus. When the Boards get power, some of them > needs extreme long to start the program from the external flash >...
  6. A

    Fast Ethernet with 8051 - specification info needed

    Re: Fast Ethernet with 8051 Maxim/Dallas now have released an 8051 with Fast Ethernet MAC and embedded Task Switcher/TCP/IP all in rom on board. Part Number DS80C400. **broken link removed** alpha_man
  7. A

    Need 5V-Least power dissipation

    I would suggest using either a DC-DC converter with integrated LDO regulator, or using a buck-boost DC-DC converter so that as the power output from the 9V battery drops below the threshold for the step-down component of the converter, it changes to step-up mode. This will give you the best...

Part and Inventory Search

Back
Top