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 RalphHilton

  1. RalphHilton

    Looking for Encryption Algorithm

    Re: Encryption Algorithm If you want a simple algorithm that isn't very secure then a simple XOR with a given key works. XOR the message with the key to encrypt. XOR again with the same key to decrypt.
  2. RalphHilton

    Send your Codvision AVR projects

    codevisionavr_c_compiler_1.24.8d_pro_full CV bootloader: https://www.cmeter.org/CVmegaload/index.html Code for PLED displays: https://www.cmeter.org/pled/index.html
  3. RalphHilton

    What chip producers send samples outside the USA?

    Re: online samples ? www.linear.com are also good with samples.
  4. RalphHilton

    bootloader for atmega

    atmega128 bootloader I have put up a CodeVisionAVR version on https://www.cmeter.org/CVmegaload/index.html
  5. RalphHilton

    What is a Median Filter ?

    Here's a simple one for real time data: // Insert rawdata into array with insertion sort if (datacount==0) datavals[0]=mcdataval; for (i=datacount-1; i >=0; i--) { if (rawdataval < datavals[i]) datavals[i+1]=datavals[i]; else { datavals[i+1]=rawdataval...
  6. RalphHilton

    Looking for books about Delphi audio DSP

    Re: Delphi audio DSP You might find the Delphi DSPlab components at http://www.teworks.com/ of interest.
  7. RalphHilton

    Who have schematic or PCB of ISP for AVR ?

    Re: isp for avr www.olimex.com www.avrfreaks.net

Part and Inventory Search

Back
Top