- 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
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[마이크로프로세서 응용설계] 실습자료 - AVR_TEST 본문
#include <iom128.h>
#include <ina90.h>
#define ON 1
#define OFF 0
#define UINT8 unsigned char
// 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()
{
DDRD = (UINT8) ~(0x61); // ~(01100001) = (10011110) = 0x9e
DDRE = (UINT8) ~(0x87); // ~(10000111) = (01111000) = 0x78
PORTD = 0x61; // 01100001
PORTE = 0x18; // 00011000
}
void main(void)
{
init_mcu();
while (1)
{
if ( get_sw0() ) set_led0(ON);
else set_led0(OFF);
if ( get_sw1() ) set_led1(ON);
else set_led1(OFF);
if ( get_sw2() ) set_led2(ON);
else set_led2(OFF);
set_led3(ON);
};
}
'★─Multi Media > ☆─3학년 1학기' 카테고리의 다른 글
[마이크로프로세서 응용설계] 실습자료 - Interrupt (0) | 2008.10.13 |
---|---|
[마이크로프로세서 응용설계] 실습자료 - AVR_TEST2 (0) | 2008.10.13 |
[디지털신호처리] 연습문제 모음 (0) | 2008.10.13 |
[네트워크 프로그래밍] 3~4인 네트워크 기말 프로젝트 (1) | 2008.10.06 |
[유닉스실습] 3_25_3 연습문제 (0) | 2008.04.28 |