Correct spaces/tabs and indentation

pull/1218/head
hjjeon0608 2015-07-07 10:45:37 +09:00
parent 482320fe01
commit cb9d835b51
1 changed files with 10 additions and 10 deletions

View File

@ -24,9 +24,9 @@ extern "C"{
void PWM3_Handler(void) void PWM3_Handler(void)
{ {
wiz_rtc_time++; wiz_rtc_time++;
PWM_CH3_ClearOverflowInt(); PWM_CH3_ClearOverflowInt();
} }
#ifdef __cplusplus #ifdef __cplusplus
} }
@ -35,9 +35,9 @@ void PWM3_Handler(void)
void rtc_init(void) { void rtc_init(void) {
PWM_TimerModeInitTypeDef TimerModeStructure; PWM_TimerModeInitTypeDef TimerModeStructure;
*(volatile uint32_t *)(0x410010e0) = 0x03; *(volatile uint32_t *)(0x410010e0) = 0x03;
/* Timer mode configuration */ /* Timer mode configuration */
TimerModeStructure.PWM_CHn_PR = 7; TimerModeStructure.PWM_CHn_PR = 7;
TimerModeStructure.PWM_CHn_MR = 1; TimerModeStructure.PWM_CHn_MR = 1;
@ -55,7 +55,7 @@ void rtc_init(void) {
PWM_CHn_Start(PWM_CH3); PWM_CHn_Start(PWM_CH3);
NVIC_SetVector(PWM3_IRQn, (uint32_t)PWM3_Handler); NVIC_SetVector(PWM3_IRQn, (uint32_t)PWM3_Handler);
NVIC_EnableIRQ(PWM3_IRQn); NVIC_EnableIRQ(PWM3_IRQn);
rtc_enabled = 1; rtc_enabled = 1;
} }
void rtc_free(void) { void rtc_free(void) {
@ -73,7 +73,7 @@ time_t rtc_read(void) {
} }
void rtc_write(time_t t) { void rtc_write(time_t t) {
//*(volatile uint32_t *)(0x41001008) = 0x42; // timer disable, interrupt disable //*(volatile uint32_t *)(0x41001008) = 0x42; // timer disable, interrupt disable
wiz_rtc_time = t; wiz_rtc_time = t;
//*(volatile uint32_t *)(0x41001008) = 0x72; // timer enable interrupt enable //*(volatile uint32_t *)(0x41001008) = 0x72; // timer enable interrupt enable
} }