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 brao

  1. B

    Interrupt problem in serial communication

    IN ISR TRY TO DO THIS AT END OF YOUR CODE...I HOPE YOU ARE YOU USING UART INTERRUPT IN ISR FUNCTION RXIF=0; // Clear UART RX Interrupt Flag. RXIE=0; // Disable UART RX Interrupt CHECK THIS CODE This code will read in the UART data and store the result in an array. unsigned cnt, cnt1; char...
  2. B

    Interrupt problem in serial communication

    did you Enable external interrupts INTE from RB0 did you make portb as output...once post your main function so that i can found out error in your code.. - - - Updated - - - once check your while loop in main function
  3. B

    Interrupt problem in serial communication

    before making gie =1 reset the external interrupt flag (INTF = 0) and enable the external interrupt(INTE = 1) and then set gie =1 did u do this - - - Updated - - - in your isr function check for this if (INTF) // If the external flag is 1, do ..... { INTF=0; // Reset the external interrupt flag
  4. B

    Interrupt problem in serial communication

    which microcontroller ur using...give detailed information
  5. B

    Debugging using break point

    I am new to mcu programming....i want to debug my code using breakpoints...can i know what are the rules to be followed for debugging using breakpoints.. From where the breakpoint must start..is it from while loop in main program or at any point we can start? where shall i need to end the break...
  6. B

    Uart communication between two different microcontrollers

    from high voltage mcu tx to low voltage mcu rx, use a simple resistive voltage divider. low voltage mcu tx connects directly to high voltage mcu rx. my logic is, there is low threshold voltage level for high voltage mcu that might be lower than 1.8v. THNX FOR YOUR SUGGESTIONS....we have to use...
  7. B

    Uart communication between two different microcontrollers

    Thnx for your reply...one more thing i want to clarify one mcu is operating at 1.8v and other mcu at 3.3v..as their is difference in voltage do we need any special ic in our hardware circuit
  8. B

    Uart communication between two different microcontrollers

    Hi...i want to communicate usart communication between 2 different microcontrollers...what are the hardware conections we have to give for communicating between 2 different microcontrollers...and how to take care in the software part like baudrate must be same for both controllers...? please...

Part and Inventory Search

Back
Top