• 전문가 요청 쿠폰 이벤트
  • 통합검색(1,439)
  • 리포트(1,252)
  • 시험자료(86)
  • 자기소개서(56)
  • 논문(17)
  • 방송통신대(17)
  • 이력서(7)
  • 서식(3)
  • ppt테마(1)
판매자 표지는 다운로드시 포함되지 않습니다.

"code and program" 검색결과 441-460 / 1,439건

  • 전전컴설계실험2-10주차 예비
    -10주차 Pre Lab#8-(Application-Designsegment and Piezo-Control)학과전자전기컴퓨터공학부학번2009440138이름정필웅담당교수문용삼 교 ... (Materials and Methods)-실험 도구 및 재료-실험 절차와 방법실험결과(Result)-측정 결과의 도식적 표현-측정 결과의 설명참고문헌(References)1 ... of this Lab & Basis of the assumption음계발생원리음계는 총 9개의 옥타브로 구성되어있다. 각 옥타브에는 반음씩의 간격으로 12개의 음이 존재한다. 이
    Non-Ai HUMAN
    | 리포트 | 10페이지 | 1,500원 | 등록일 2014.03.28 | 수정일 2014.04.15
  • Reading Explorer 5, Unit 6A ~ 10B 단어 정리
    가 무리지어 먹이를 구하는 규칙bulk deliveries 대량 배송drones 수컷 꿀벌scouts 정찰 벌waggle dance 8자 춤code 암호threshold 한계점, 문턱 ... 다stuck into ~에 찔러 넣다flicks 물이 밖으로 튀기는 것programmed 설정하다home base 본거지preeminent 탁월한, 우수한runs 운영하다in c ... 하다cannibalism 식인 풍습fanatically 광적으로epidemics 전염병in and around them 그들 주변에took to the air 공중으로 날아갔
    Non-Ai HUMAN
    | 시험자료 | 5페이지 | 1,500원 | 등록일 2018.03.17 | 수정일 2018.05.07
  • 예비7
    Preparation report #7전기전자응용실험Chap 7. Control Experiment using 80C196KC Microcontroller과목명.전기전자응용실험담 당.제출일.성 명.1. IntroductionIn chapter7, by using C language, we will practice basic functions and operations of microcontrollers through 80C196KC kit. Especially, we want to focus on practice the operation of PORT0 ,1 and practice the use of interrupts and timers.2. Equipments and components80C196KC kit, PC and MDA-WIN196 software3. Theory① I/O PORTEach of the five I/O ports has an associated Special Function Register(SFR) to read or write the port pins. Some of the I/O ports have an additional SFR that reconfigures the port pin to support an alternate function. Not all port SFRs are both readable and writeable. Also, not all SFRs exist in the same horizontal window(e.g., the SFR control registers are written in HWindow 0 but read back in HWindow 15).IOPORT0, IOPORT1, and IOPORT2 are the SFRs used to read Port 0, read/write Port 1, and read/write Port 2, respectively. These registers have the stack and then clears the PSW and INT_MASK1.3. The LDB INT_MASK1 instruction enables those interrupts that you choose to allow to interrupt the service routine.4. The EI instruction re-enables interrupt processing and inhibits interrupt calls until after the next instruction executes.5. The actual interrupt service routine executes within the priority structure established by the software.6. At the end of the service routine, the POPA instruction restores the original contents of the PSW, INT_MASK1, and WSR registers; any changes made to these registers during the interrupt service routine are overwritten.③ TimerTimer 1 is 16-bit timer. In 20Mhz , 1-state time is 0.1㎲. If timer 1 register is overflow(0xFFFF ⇒ 0x0000), then IOS1.5 is "1". If timer 1 register is IOC1.2=1, MASK 0=1, then timer 1 will occur timer 1 overflow interrupt.In 80C196KC , all timer 2 functions is controlled SFRs. The following table is functions of PORT2 pins using in timer 2.4. Understanding of the program1) 0) through DG2111 analog switch, SW5 is PORT0.7(AD7). A toggle switch SW0 is connected with LED0 and the right 7-segment, push button switch SW5 is connected with LED1 and second 7-segment. If we control SW0 and SW1, then output is showed LED & 7-segment.Third program is external interrupt program. First state is that 7-segment will show '1110 ', LED0 will be lit. If we press SW4 repeatedly, LED1, LED2, LED3 additional lighting to turn the 7-segment. And we press SW4 three times, all LEDs illuminates, and 7-segment showed '0000'. Once again SW4 pressed, It will go back to its initial state.4th program is external interrupt priority program. First state is that LED0 is ON, and 7-segment '7', after a short period of time, LED0 will turn OFF, LED3 turn ON, and 7-segment will show '29' automatically because of interrupt vector.5th program is Timer 1 program. Timer 1 occurs overflow every 52.4ms. Then clear and reset. LED0 ~ LED3 will turn ON sequentially, 7-segment, 1110 → 1101 → 1011 → 01 if we adjust delay time longer, then LEN ON time is longer. But delay time maximum is 60000. Therefore, we will code delay(60000); line repeatedly.② Software interrupts - If MASK.7 and I flag is set to 1 to PEND.7 in software requests interrupt and starts the interrupt handling function. Rewrite the program so that PEND.7 is set to 1 in an appropriate time interval and execute it. By an appropriate time interval can be made using the delay function in the previous sections.We will adjust likewise next code.do {PORT1 = led;digit = 0;if(led & 0x01) digit |= 0x0001; /* examine sw0 */if(led & 0x02) digit |= 0x0010; /* examine sw1 */if(led & 0x04) digit |= 0x0100; /* examine sw2 */if(led & 0x08) digit |= 0x1000; /* examine sw3 */FND = digit; /* display by 7-segment */PEND = 0x80;delay(60000);delay(60000); /* wait interrupt */} while(1); /* infinite loop */Whatever input come the hexadecimal PEND, when it changed binary, MSB must be 1. So, 10000000 (2) = 0x80 is enough to it.③ Rewrite the pll be longer.We will check IOS1.5 because the timer 1 overflow examined. So we will adjust likewise next code.void main( void ){unsigned int digit; /* FND output local variable */SELECT = 0xfe; /* led choose connected I/O */FND = 0; /* 7-segment clear */PEND = 0; /* clear PEND register */led=0xfe; /* led ON initial value */count = 0; /* clear interrupt count */do {PORT1 = led;digit = 0;if(led & 0x01) digit |= 0x0001; /* examine LED0 */if(led & 0x02) digit |= 0x0010; /* examine LED1 */if(led & 0x04) digit |= 0x0100; /* examine LED2 */if(led & 0x08) digit |= 0x1000; /* examine LED3 */FND = digit; /* display by 7-segment */if(IOS1 & 0x20) over(); /* additional part */} while(1); /* infinite loop */④ From program 7-5, if you push SW4 and let go, the counter of TIMER2 changes by 2 numbers. Rewrite the program so that the counter increments by one and execute it.We will adjust likewise next code.count = TIMER2/2;The line count = TIMER2/2; means that timer 2's counter changes 1.⑤ Rewrite the l
    Non-Ai HUMAN
    | 리포트 | 6페이지 | 1,500원 | 등록일 2011.06.01
  • Mining Rules From Source Code(소프트웨어 코드 마이닝)
    -> Too Large)3. Itemset Database1) Source code4. Source Code Parsing Process1) 토큰되어야할 Identifiers를 찾 ... HYPERLINK \l "_Toc293349124" 소스코드로부터 규칙을 분석하는 방법 PAGEREF _Toc293349124 \h 3 HYPERLINK \l "_Toc ... -Checking Program Beliefs PAGEREF _Toc293349126 \h 5 HYPERLINK \l "_Toc293349127" 1.1.2 Deriving Rule
    Non-Ai HUMAN
    | 리포트 | 29페이지 | 1,000원 | 등록일 2011.05.16
  • 서강대학교 마이크로프로세서응용실험 4주차결과
    - halfword단위로 zero extension을 수행한다.4. 실험내용 및 분석● Program 1▲ Program 1 사용 코드area lab4_1,codeentry__main ... 결과 비어있던 r6에 0x00000002가 들어와 있는 것을 확인하여 나눗셈을 수행하였다.● Program 3▲ Program 3 사용 코드area lab4_3,codeentry ... 도 사용한다. 그리고 EOR연산을 거친 후에 얼마나 데이터가 비슷한지도 가늠할 수 있다. TST(test)명령어는 AND와 같은 수행을 하지만, 결과는 저장하지 않고 flag만 반영
    Non-Ai HUMAN
    | 리포트 | 12페이지 | 2,000원 | 등록일 2014.01.02
  • 전전컴설계실험2-8주차예비
    & Xilinx ISE program ,HBE-ComboII-S ,JTAG programming USB cable(3)Matters that require ... -8주차 Pre Lab#6-Sequential-Logic-Design-Ⅰ(Flip-Flop, Register and SIPO)학과전자전기컴퓨터공학부학번2009440138이 ... 방법(Materials and Methods)-실험 도구 및 재료-실험 절차와 방법실험결과(Result)-측정 결과의 도식적 표현-측정 결과의 설명참고문헌(References)1
    Non-Ai HUMAN
    | 리포트 | 11페이지 | 1,500원 | 등록일 2014.03.28 | 수정일 2014.04.15
  • LU decomposition, Cholesky, Forward substitution, Backward substitution - 수치해석 프로젝트 C++
    . Programming위에서 알아본 Cholesky’s method, forward substitution, backward substitution을 프로그래밍 언어인C ^{+ ... +}을 이용하여 프로그래밍 하면 컴퓨터를 이용하여 어떠한 값을 넣어도 쉽게 구할 수 있다.프로그래밍 코드는 사용자가 원하는 값을 넣을 수 있도록 프로그래밍 하였고, 주어진 프로젝트 ... 조건대로bar{A} = {bmatrix{6&15&55#15&55&225#55&225&979}} 를 대입하고bar{b}는 임의의 값인bar{b} = {bmatrix{3#1#5
    Non-Ai HUMAN
    | 리포트 | 6페이지 | 3,000원 | 등록일 2014.05.02
  • 나이키,스포츠마케팅,마케팅사례,마케팅,브랜드,브랜드마케팅,기업,서비스마케팅,글로벌,경영,시장,사례,swot,stp,
    &Resposibility, Strict code of conduct/ Community service program글자는 이렇게만 놔두고 도식화 !!^^Offer reasonable price ... enhancing corporate image: Strict code of conduct/ community service program9- Sports Empire- Using s ... , Corporate Culture,and Human Resource Management Policies..PAGE:301Introduction..PAGE:4IntroductionGoal
    Non-Ai HUMAN
    | 리포트 | 31페이지 | 3,000원 | 등록일 2012.08.27
  • PSD센서를 이용한 근접 장애물 인식 및 충돌회피
    한다.④ Build 메뉴에 Build항목을 클릭하여 코드를 컴파일 한다.⑤ AVR 실행 아이콘을 클릭한다.⑥ AVR 실행 창에서 "Erase Device"를 클릭하여 기존 ... 에 Robo-Car 메모리에 들어있는프로그램을 지운다.⑦ AVR 실행창 Flash메뉴에서 hex 파일의 경로를 “PSD \default\psd.hex"로 바꿔준후 "Program" 버튼 ... 실험\PSD_Move \PSD_Move.asp” 파일을 오픈한다.④ Build 메뉴에 Build항목을 클릭하여 코드를 컴파일 한다.⑤ 아래 그림과 같이 AVR 실행 아이콘을 클릭
    Non-Ai HUMAN
    | 리포트 | 7페이지 | 2,000원 | 등록일 2015.02.10
  • 실험2
    MODIFY THE FOLLOWING PROGRAM CODES*/typedef struct mem_chunk {int code;int size;void *ptr;int *pcode ... void *mmalloc(int byte_count){MEM_CHUNK *the_mem;int for_code;if(byte_count ptr = (void *)calloc(1 ... , byte_count);if(!(the_mem->ptr)) {cfree(the_mem);return((void *)0);}the_mem->size = byte_count;for_code =-;
    Non-Ai HUMAN
    | 리포트 | 9페이지 | 1,000원 | 등록일 2011.11.19
  • 삼성과 애플의 특허소송
    Apparatus and method for generating scrambling code in UMTS mobile communication system72007922002/12 ... 73860012000/6/26Apparatus and method for channel coding and multiplexing in CDMA communication system ... a touch screen and method for recognizing key code using the same70096262001/4/16Systems and
    Non-Ai HUMAN
    | 리포트 | 10페이지 | 1,500원 | 등록일 2013.07.10
  • 서강대학교 마이크로프로세서응용실험 7주차결과
    Program 1 사용 코드#include #include "kitbase_addr.h"u8sdata;int main (void) {RCC->APB2ENR = 0x ... 에 장착된 소자/장치들을 어떻게 access하는지 이해한다.● C program을 통해 KIT의 baseboard에 장착된 소자/장치들의 사용 방법을 이해한다.● 동일한 동작특성 ... 한다. PortE는 소자들의 신호명을 나타낸다. 예를 들면, LED_CS는 LED과 관련된 신호로 불을 켜거나 끄는 역할을 할 수 있다.4. 실험 내용 및 분석● Program 1
    Non-Ai HUMAN
    | 리포트 | 9페이지 | 2,000원 | 등록일 2014.01.02
  • 전기전자 응용실험_8주차 예비 보고서
    1. Goals & ObjectivesFamiliarize with various functions designed to control DC and step motor. Using PWM, make phone ringtone and control the speed and direction of a DC motor. And using HSO, control the speed and direction of a step motor.2. Program Understandingァ. Making RingtonesMaking ringtones can be implemented by the function that TIMER2 can counts the internal clock. A high-frequency(480г) sound will be 12 sets that it lasts about 25ms and a low-frequent(320г) sound will be 8 set that it lasts about 25ms. It can be calculated with the wavelength of sound component. If we repeat the high tone and low tone 20 times respectively, the time spent may be 1 second. And then we will insert silence for two seconds. In the code, we implement _high() and _low() to produce the sound. And in the main function, they are included that the interrupt service routine of TIMER2, and high-frequency and low-frequency sound routine.『 Food for thoughtsAccording to the frequency, we make below table wsignal of the DC motor through PWM0 pin and display the duty ratio of the PWM0 as well as rotation speed per second in hexadecimals on the 7-segment. Use the software timer0 interrupt to make one second and use timer2 to measure the speed of the motor. In this experiment, PWM0 is used for PWM period. And P14 to P17 have the functions, so we implement the each function to below code.KeyFunctionKeyFunctionP141 rotation by clockwiseP161 rotation by anticlockwiseP152 rotations by clockwiseP172 rotations by anticlockwise< Table 2. The Function of the Each Switch >『 Food for thoughtIn the code, interrupt vector number is included that we use. We just insert a function named check to check the function of switch. Also, we modify some pin code according to the table. The revised code is below.#pragma model(kc) /* 80C196KC */#pragma interrupt(rps=0, second = 5, check=7)#include /* include the SFRs *//* MDA-WIN196 DC MOTOR UNIT selection address */#define SELECT1 (*( unsigned char *)(0x1010))/*RT1 &= 0xfc; /* last 2 bits are set to 0 */}if( PORT1 || 0x80 ){rotate = 2; /* 2 rotations */PORT1 &= 0xfc; /* last 2 bits are set to 0 */}PORT1 &= 0xfe; /* motor enabled */}void rps( void ){rotate--;if(rotate == 0) PORT1 = 0x01;TIMER2 = HOLE;}< Figure 1. The Program Code of the Revised Control of the DC Motor >ィ. Control of the Step motorWe set the HSO.0 to HSO.3 to make the step pulse. By the step pulse, step motor is operated with phase differences. And according to switch operation, the rotation degree is changed. In other words, according to the switch operation, the flag is changed. And then, by the flag, the rotation degree is determined. And the rotation degree is displayed as the 7-segment. Some seconds later, it calls the function that search for the start point, and it returns the starting point. Above experiments are operated by the PWM operation, but this experiment is operated by the HSO operation. That is, it uses the internal clock./* STEP.C */#pragma model(kc) /* 80C19he count value */do{idle(); /* wait for interrupts */}while(count--);/* HSO pin interrupt disable */MASK &=0xf7;BLANK = 0; /* 7-segment disable */}/* turn right */void right(unsigned char count){unsigned char temp;flag=0; /* clear flag */dir=0; /* turn right */phase =0; /* step phase initial value *//* current active HSO pin set */HSOC = phase + 0x20;HSOT = TIMER1 + 3;temp = count; /* for 8 states *//* reset current active HSO pin after 20mS */HSOC = phase + 0x10;HSOT = TIMER1 + step;/* HSO pin interrupt enable*/PEND =0;MASK |=0x08;/* turn right as much as the count value */do{idle(); /* wait for interrupt */}while(count--);/* HSO pin interrupt disable */MASK &=0xf7;BLANK = 0; /* 7-segment disable */}/* origin */void orgin(void){unsigned char temp;dir=0; /* turn left */phase =0; /* step phase initial value *//* current active HSO pin set */HSOC = phase + 0x20;HSOT = TIMER1 + 3;temp = PEND; /* for 8 states *//* reset current active HSO pin after 20[mS] */HSOC = phase + 0x10;HSOT = TIMERND =0;MASK = 0x80;enable();/* find origin */orgin();/* check keys */do{if((flag & 0x01)){ /* check p14 */FNDL = 0x30; /* 7-segment lower digit display */left(17); /* turn 30 deg to left */};if((flag & 0x02)){ /* check p15*/FNDH = 0x30; /* 7-segment upper digit display*/right(17); /* turn 30 deg to right */};if((flag & 0x04)){ /* check p16 */FNDL = 0x90; /* 7-segment lower digit display */left(17*3); /* turn 90 deg to left */};if((flag & 0x08)){ /* check p17 */FNDH = 0x90; /* 7-segment upper digit display */right(17*3); /* turn 90 deg to right */};if((flag & 0x01)){ /* check p14 */FNDL = 0x30; /* 7-segment lower digit display*/left(17); /* turn 30 deg left */};}while(1);}< Figure 2. The Program Code of the Revised Control of the Step Motor >『 Food for thought�� Rewrite the program so that the steps are exactly 30 and 90 degrees.-. The rotation angle of motor is increased according to the longer drive time. So, the count variable may be influenced the rotation angle. It is a clue for thee.
    Non-Ai HUMAN
    | 리포트 | 4페이지 | 1,000원 | 등록일 2011.07.09
  • lab4 비교와분기
    나온다.3. 프로그램 과정① 홈페이지의 masm611 file을 다운로드 하여 설치한다.② 메모장을 열어서 program code를 작성한다.③ asm file 확장자로 저장 ... 'CORRECT! GOOD!','$' // 메시지 출력을 위한 byte형 변수 선언Data ends // data segment의 끝Code segment // code s ... EECE 374MICROPROCESSOR ARCHITECTURE AND APPLICATIONLab 4[ Final Report ]LAB DATE : 4.1DUE DATE : 4
    Non-Ai HUMAN
    | 리포트 | 7페이지 | 1,000원 | 등록일 2010.08.29
  • 객체지향프로그래밍 11월 7일 과제 - 자바(Java)
    , Searching, Sorting and Big O.](1) 소스코드(2) 입력 및 실행결과 PAGE \* MERGEFORMAT 1 ... and return true if the integer is even and false otherwise. Incorporate this method into an ... application that inputs a sequence of integers (one at a time) and determines whether each is even or odd.(1
    Non-Ai HUMAN
    | 리포트 | 4페이지 | 1,500원 | 등록일 2013.01.29
  • [아주대전자공학]반도체공학1matlab과제-도핑에따른그래프출력등
    MATLAB program that computes n, p, and E _{F} -E _{i} given acceptable input values of T (temperature in ... Kevin), N _{D}(cm-3), and N _{A}(cm-3). Incorporate the program presented in part (a) of Exercise 2 ... relevant answer to Problems 2.17 and 2.18.모든 값들(T, NA, ND, ni, n, p, EF-EI)을 출력하기 위해 아래와 같은 코드를 추가
    Non-Ai HUMAN
    | 리포트 | 4페이지 | 1,000원 | 등록일 2014.05.17
  • Unity3D엔진과 언리얼 엔진의 비교분석
    -Comparative analysis of Unity3D engine and Unreal engine-Focused on the mobile game market-요 약본 문서는 unity 3D ... omparison between unity3d engine and unreal engine has been described.Also, it was specifically c ... overed that how current 3d engines has prevailed the game market and the countermeasure of Unreal and
    Non-Ai HUMAN
    | 리포트 | 6페이지 | 2,000원 | 등록일 2016.07.28
  • Verilog 를 이용한 CPU의 Pipeline 구현 (컴퓨터 아키텍쳐 실습)
    을 제시한 interface에 맞추어 verilog로 작성한다.(2) TSC full instruction 테스트를 위한 TSC assembly code를 작성한다.(3) 위의 c ... testbench skeleton을 제약사항에 맞추어 변형하는 것을 잊지 않는다!)(4) CPU를 test할 수 있는 TSC Assembly code를 작성하여, cpu testbench ... 한 뒤, cpu testbench에서 cpu의 정상 동작을 확인한다.동일한 TSC assembly program을 pipelining을 사용한 CPU와 사용하지 않은 CPU 모두
    Non-Ai HUMAN
    | 리포트 | 3페이지 | 1,000원 | 등록일 2013.03.08
  • 전전컴설계실험2-11주차 예비
    -11주차 실험--목차-서론(Introduction)-실험목적-실험을 위해 필수 배경이론, 개념-실험의 가설 및 근거방법(Materials and Methods)-실험 도구 및 재료 ... 를 설정한다. 이 다음에 송수신하는 데이터는 DD RAM의 데이터이다.-Busy flag & address Reading : LCD 모듈이 내부 동작중임을 나타내는 Busy ... Flag(BF) 및 어드레스 카운터의 내용을 read 한다. LCD 모듈이 각 제어 코드를 실행하는데 설정된 시간이 필요하므로 FPGA가 BF를 읽어 1일 경우에는 기다리고 0일 경우
    Non-Ai HUMAN
    | 리포트 | 15페이지 | 1,500원 | 등록일 2014.03.28 | 수정일 2014.04.15
  • 판매자 표지 자료 표지
    [C언어]C언어의 개념
    를 사용하여 프로그램을 작성한 다음에 이를 파일로 저장한다. 이 파일이 원시 프로그램(source program) 코드이다.(2) 원시 프로그램을 컴파일러를 사용하여 목적 프로그램 ... (object program) 코드로 번역한다.(3) 링커를 사용하여 프로그램에서 필요한 각종 라이브러리와 프로그램을 서로 연결시키고 프로그램을 시작시키는 시작 코드(start-up ... code)를 포함시킨다.이와 같은 3단계 과정을 거치면 원시 프로그램은 실행 가능한 프로그램으로 변하게 된다.4. 프로그램의 실행프로그램의 실행은 컴퓨터 제어장치가 기억장치
    Non-Ai HUMAN
    | 리포트 | 5페이지 | 2,000원 | 등록일 2011.11.06 | 수정일 2018.11.27
해캠 AI 챗봇과 대화하기
챗봇으로 간편하게 상담해보세요.
2026년 04월 02일 목요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
10:45 오전
문서 초안을 생성해주는 EasyAI
안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
- 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감