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 iczey

  1. I

    PIC16F877A Timer Interrupt Not Working

    Thanks again Brian. Here is my code unsigned int ctr; void interrupt() { // Timer1 Interrupt - Freq = 30Hz - Period = 0.03333333333 seconds if (PIR1.TMR1IF && PIR1.TMR1IE) // timer 1 interrupt flag { PIR1.TMR1IF = 0; // clear timer1 interupt bit TMR1IF TMR1H = 0x1C...
  2. I

    PIC16F877A Timer Interrupt Not Working

    Hi Brian, thanks for replying. i'm quite lost as to how will i be initializing the option_reg and the intcon. how will i able to count up to an hour and then execute a certain line of code and this goes on repeatedly every hour? and where should i be using the 7200? best regards.
  3. I

    PIC16F877A Timer Interrupt Not Working

    i just have a few querries about your computation, i have am making a program that continuously reads an adc level, and then sends the average adc level thru uart every hour. I am having problems using delays, and i'm a newb in timers and interrupts. after reading your comments can i also use...
  4. I

    PIC16F877a Timer and Interrupt

    Hey guys.. I'm quite unfamiliar on how to use timer and interrupt in the said microcontroller. I am using mikro C and I have this project were the program has to do 2 sets of operation, one is to continuously monitor a certain adc level, and the next is to send the average adc level thru usart...

Part and Inventory Search

Back
Top