Interrupt for PIC18F

Interrupt for PIC18F

1st - 5th Grade

8 Qs

quiz-placeholder

Similar activities

22BIT315 OS quiz

22BIT315 OS quiz

1st Grade

10 Qs

Computer Function and Interconnection

Computer Function and Interconnection

1st Grade

10 Qs

Microcontroller Troubleshooting

Microcontroller Troubleshooting

4th Grade

10 Qs

Zoom Expectations

Zoom Expectations

2nd - 4th Grade

10 Qs

Mobile Game: Unity

Mobile Game: Unity

5th Grade

10 Qs

Microcontroller 1

Microcontroller 1

1st - 12th Grade

10 Qs

PorturiMC AVR

PorturiMC AVR

4th Grade

10 Qs

mam final quiz

mam final quiz

5th Grade

10 Qs

Interrupt for PIC18F

Interrupt for PIC18F

Assessment

Quiz

Computers

1st - 5th Grade

Hard

Created by

Azura Farah

Used 29+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following method will avoid the microcontroller from tying down?

Polling method

Interrupt method

2.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Give the name of interrupt in INTCON register.

TMR0

TMR1

INT0

INT1

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following instruction will enable the TMR0 interrupt?

INTCONbits.TMR0IF=1;

INTCONbits.TMR0IF=0;

INTCONbits.TMR0IE=1;

INTCONbits.TMR0IE=0;

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What memory address in the interrupt vector table is assigned to high-priority interrupts?

0x0008

0x0018

0x0080

0x0081

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following instruction is used to disable all the interrupt.

INTCONbits.GIE=0;

INTCONbits.GIE=1;

INTCONbits.GIEL=1;

INTCONbits.GIEL=0;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The INT1IF bit belongs to the ___________________ register.

INTCON

INTCON2

INTCON3

PIR1

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the function of this C instruction?


#pragma code My_HiPrio_Int=0x0008

void My_HiPrio_Int(void)

{

_asm

GOTO chk_isr

_endasm

}


#pragma code

Transfer control to the ISR (Interrupt Sub-routine)

Transfer control to main program

Find source of interrupt

All of the above

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is it true that "pragma", "code" and "intterupt" are reserved keyword?

True

False