Page 512 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 512
-Device Database를 통한 각 디바이스별 스타트업 코드 제공
-다양한 어플리케이션 예제
-CMSIS(Cortex Microcontoller Software Interface Standard) 적용
3. 소프트웨어
가. 웹
이번 작품에서 중심이 되는 기능 중 하나가 웹에서 회원등록을 통해 고객(customer)들을 관리
하고 고객들이 쇼핑카트에 담은 상품들을 웹에 나열하는 기능이다. 그 기능을 위해 우리가 만
든 소스가 아래에 있다.
[MAIN]
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, width=device-width"
/>
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<title>IMHS Project</title>
<link rel="stylesheet" href="./css/common.css">
<link rel="stylesheet" href="./css/layout.css">
<link rel="stylesheet" href="./css/main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="./js/jquery.touchSwipe.min.js"></script>
<script src="./js/idangerous.swiper.js"></script>
<script src="./js/common.js"></script>
<style>
</style>
</head>
<body>
- 505 -