Download presentation
Presentation is loading. Please wait.
Published byGyles Rich Modified over 8 years ago
1
System Control & Clock UNIT 08 로봇 SW 교육원 조용수
2
학습 목표 System Control Register System Clock CMSIS CMSIS Project 2
3
System Control Register Reset, System Timer, Interrupt 등을 관리 전반적인 MCU 동작에 영향을 미치는 작업으로, 초 기 Power Up 시점에서 관련 Register 설정이 필요 3
4
System Control Register 4 PDID : MCU ID
5
System Control Register 5 RSTSRC : System Reset Source Register
6
System Control Register 6 IPRSTC1 : Peripheral Reset Control Register 1
7
System Control Register 7 IPRSTC2 : Peripheral Reset Control Register 2
8
System Control Register 8 Brown-Out Detector – 전원 전압이 일정값 이하로 저하되는 것을 감지 BODCR : Brown-Out Detector Control Register
9
System Control Register 9 MCU 의 경우 제한된 Pin 으로 인하여 여러가지 기 능이 하나의 핀 Out 에 공유된다. Px_MFP : Multi Function and Input Type Control
10
System Control Register 10 P0_MFP : Multi Function and Input Type Control
11
System Control Register Lock & Unlock – 외부 Noise 및 시스템 오 동작 으로 인한 전체 시스템의 영향을 막기 위한 작업 –MCU 의 중요한 Register 를 일정 형식의 Unlock 루틴을 거쳐야 Write 가능 11
12
System Control Register Lock & Unlock 12
13
System Control Register Lock & Unlock 13
14
System Control Register Lock & Unlock 14
15
System Control Register C 15
16
Clock MCU 동작을 위한 기본 단위 모든 내부 동작은 Clock 과 동기화 하여 진행된다. 16
17
Clock X-tal – 주변에 발진에 필요한 회로 구성필요 – 가격 저렴 Osc – 발진 회로 내장 – 정확한 주파수 출력 17
18
Clock 4 가지의 Clock Source 제공 4~24 MHz external high speed crystal oscillator (HXT) Programmable PLL output clock frequency (PLL source can be selected from external 4~24 MHz external high speed crystal (HXT) or 22.1184 MHz internal high speed oscillator (HIRC)) (PLL FOUT) 22.1184 MHz internal high speed RC oscillator (HIRC) 10 kHz internal low speed RC oscillator (LIRC) 18
19
Clock 선택된 Clock 은 각 I/O 디바이스의 Clock 으로 공급 19
20
Clock Control Register 20
21
Clock Control Register 21 PWRCON
22
Clock Control Register 22 AHBCLK
23
Clock Control Register 23 APBCLK
24
Clock Control Register 24 CLKSTATUS
25
Clock Control Register 25 CLKSEL0
26
Clock Control Register 26 CLKSEL1
27
Clock Control Register 27 CLKSEL2
28
Clock Control Register 28 CLKDIV
29
Clock Control Register 29 PLLCON
30
Clock Control Register 30 PLLCON
31
System Init 31 #define GCR_BA 0x50000000 #define CLK_BA 0x50000200 #define GPIO_BA 0x50004000 void UnlockReg() { *((volatile unsigned int *)(GCR_BA + 0x100))=0x59; *((volatile unsigned int *)(GCR_BA + 0x100))=0x16; *((volatile unsigned int *)(GCR_BA + 0x100))=0x88; } void LockReg() { *((volatile unsigned int *)(GCR_BA + 0x100))=0x01; } void SystemInit() { int count = 200000; UnlockReg() ; *((volatile unsigned int *)(CLK_BA + 0x00)) |=0x04; while(count--); LockReg() ; }
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.