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 roland_vs

  1. R

    atmega32 avr c programming code

    PORTB = 0b11111110; // assigning a value to PORTB unconditionally PORTB &=0b11111110; // reading PORTB and MASKING OUT the LSB bit ONLY PORTB = PORTB & 0xFE; // same statement written differently PORTB &= (1<<PB0); // isn't correct if it should be the same as the previous...

Part and Inventory Search

Back
Top