Embedded system
제어가 필요한 장치 안에 들어가는 시스템
범용 컴퓨터와 구분된다.
Embedded Software
무한루프로 구현
main(void){
Lamp_init();
while(1){
Lamp_on();
wait(100); //wait for 100us
Lamp_off();
wait(100);
}
ASIC, Application Specific Integrated Circuit, 주문형반도체
위와 같은 간단한 프로그램만 돌려주는 반도체
내용 출처 http://recipes.egloos.com/5076229
임베디드 레시피 블로그 글 내용의 요약본입니다.
제어가 필요한 장치 안에 들어가는 시스템
범용 컴퓨터와 구분된다.
Embedded Software
무한루프로 구현
main(void){
Lamp_init();
while(1){
Lamp_on();
wait(100); //wait for 100us
Lamp_off();
wait(100);
}
ASIC, Application Specific Integrated Circuit, 주문형반도체
위와 같은 간단한 프로그램만 돌려주는 반도체
내용 출처 http://recipes.egloos.com/5076229
임베디드 레시피 블로그 글 내용의 요약본입니다.
'[Study] 임베디드 레시피' 카테고리의 다른 글
REST API tutorial (0) | 2018.10.02 |
---|---|
RTOS (0) | 2017.04.30 |
Process의 State (0) | 2017.04.30 |
Task로 분할하기 (0) | 2017.04.29 |