- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[마이크로프로세서 응용설계] 실습자료 - Interrupt 본문
#include <ina90.h>
#include <iom128.h>
#define DEF_USE 1
#define DEF_NOTUSE 0
#define ON 1
#define OFF 0
#define UINT8 unsigned char
#define Set_pullup(x) {SFIOR_PUD = !x;}
#define Set_port_a(x, y) {DDRA = (UINT8) ~x; PORTA = y;}
#define Set_port_c(x, y) {DDRC = (UINT8) ~x; PORTC = y;}
#define Get_id_hi() (~PINA & 0xff)
#define Get_id_low() (~PINC & 0xff)
/*
// input setting
#define Get_sw0() !PIND_Bit0
#define Get_sw1() !PIND_Bit5
#define Get_sw2() !PIND_Bit6
*/
// output setting
//#define Set_led0(x) PORTE_Bit3 = !x
//#define Set_led1(x) PORTE_Bit4 = !x
//#define Set_led2(x) PORTE_Bit5 = x
#define Set_led3(x) PORTE_Bit6 = x
void init_mcu()
{
Set_pullup(DEF_USE);
DDRD = (UINT8) ~(0x61); // ~(01100001) = (10011110) = 0x9e
DDRE = (UINT8) ~(0x87); // ~(10000111) = (01111000) = 0x78
PORTD = 0x61; // 01100001
PORTE = 0x18; // 00011000
Set_port_a(0xff, 0xff); // 00000000 11111111
Set_port_c(0xff, 0xff); // 00000000 11111111
}
// External Interrupt O service routine
#pragma vector = INT0_vect
__interrupt void ext_intO_isr(void)
{
__disable_interrupt();
if ( Get_id_hi() == Get_id_low() ) Set_led3(ON);
else Set_led3(OFF);
}
void main(void)
{
// 초기화
init_mcu();
__enable_interrupt();
EIMSK |= 0x01;
EICRA |= 0x02;
// EICRA_ISC11 = 1; // 인터럽트 하강에지
// EICRA_ISC00 = 0; // EICRA_ISC01 = 0
// EIMRK_INT0 = 1;
while (1)
{
__watchdog_reset();
}
}
'★─Multi Media > ☆─3학년 1학기' 카테고리의 다른 글
[마이크로프로세서 응용설계] 실습자료 - ADC_channel (0) | 2008.10.13 |
---|---|
[마이크로프로세서 응용설계] 실습자료 - BCD2FND (0) | 2008.10.13 |
[마이크로프로세서 응용설계] 실습자료 - AVR_TEST2 (0) | 2008.10.13 |
[마이크로프로세서 응용설계] 실습자료 - AVR_TEST (0) | 2008.10.13 |
[디지털신호처리] 연습문제 모음 (0) | 2008.10.13 |