![Intel 8XC196NT Скачать руководство пользователя страница 267](http://html1.mh-extra.com/html/intel/8xc196nt/8xc196nt_user-manual_2072210267.webp)
8XC196NT USER’S MANUAL
10-34
void poll_epa0()
{
if(checkbit(int_pend, EPA0_INT_BIT))
{
/* User code for event channel 0 would go here. */
/* Since this event is absolute and re-enabled, no polling is neccessary.*/
clrbit(int_pend, EPA0_INT_BIT);
}
}
void main(void)
{
/* Initialize the timers before using the epa */
init_timer1();
init_epa0();
/* EPA events can be serviced by polling int_pend
or epa_pend. */
while(1)
{
poll_epa0();
}
}
10.9.2 EPA Capture Event Program
This example C program demonstrates an EPA capture event. It sets up EPA channel 0 to capture
edges (rising and falling) on the EPA0 pin. The program also shows how to set up the EPA inter-
rupts. You can add your own code for the interrupt service routine.
#pragma model()
#include <80c196kr.h>
#define COUNT_ENABLE
0x80
#define COUNT_UP
0x40
#define CLOCK_INTERNAL
0x00
#define DIVIDE_BY_1
0x00
#define CAPTURE
0x00
#define BOTH_EDGE
0x30
#define USE_TIMER1
0x00
#define EPA0_INT_BIT
4
void init_epa0()
{
epa0_con = CAPTURE |
BOTH_EDGE |
USE_TIMER1;
setbit(p1_reg, 0);
/* int reg */
setbit(p1_dir, 0);
/* make input pin */
setbit(p1_mode, 0);
/* select EPA mode */
setbit(int_mask, EPA0_INT_BIT);
/* unmask EPA interrupts */
}
#pragma interrupt(epa0_interrupt=EPA0_INT_BIT)
void epa0_interrupt()
{
unsigned int time_value;
Содержание 8XC196NT
Страница 1: ...8XC196NT Microcontroller User s Manual...
Страница 2: ...8XC196NT Microcontroller User s Manual June 1995 Order Number 272317 003...
Страница 22: ...1 Guide to This Manual...
Страница 23: ......
Страница 35: ......
Страница 36: ...2 Architectural Overview...
Страница 37: ......
Страница 49: ......
Страница 50: ...3 Programming Considerations...
Страница 51: ......
Страница 66: ...4 Memory Partitions...
Страница 67: ......
Страница 104: ...5 Standard and PTS Interrupts...
Страница 105: ......
Страница 147: ......
Страница 148: ...6 I O Ports...
Страница 149: ......
Страница 176: ...7 Serial I O SIO Port...
Страница 177: ......
Страница 194: ...8 Synchronous Serial I O SSIO Port...
Страница 195: ......
Страница 211: ......
Страница 212: ...9 Slave Port...
Страница 213: ......
Страница 231: ......
Страница 232: ...10 Event Processor Array EPA...
Страница 233: ......
Страница 270: ...11 Analog to digital Converter...
Страница 271: ......
Страница 291: ......
Страница 292: ...12 Minimum Hardware Considerations...
Страница 293: ......
Страница 306: ...13 Special Operating Modes...
Страница 307: ......
Страница 317: ......
Страница 318: ...14 Interfacing with External Memory...
Страница 319: ......
Страница 362: ...15 Programming the Nonvolatile Memory...
Страница 363: ......
Страница 408: ...A Instruction Set Reference...
Страница 409: ......
Страница 476: ...B Signal Descriptions...
Страница 477: ......
Страница 493: ......
Страница 494: ...C Registers...
Страница 495: ......
Страница 565: ......
Страница 566: ...Glossary...
Страница 567: ......
Страница 580: ...Index...
Страница 581: ......
Страница 597: ......