STM32 DS1302
d[3]=settime[3]/16*10+settime[3]%16;
d[4]=settime[4]/16*10+settime[4]%16;
d[5]=settime[5]/16*10+settime[5]%16;
d[6]=settime[6]/16*10+settime[6]%16;
//d_convert();
}
应用举例
main.c
#include stm32f10x.h
#include1602.h
#includeds1302.h
EXTI_InitTypeDef EXTI_InitStructure;
ErrorStatus HSEStartUpStatus;
/* Private function prototypes -----------------------------------------------*/
void RCC_Configuration(void);
void GPIO_Configuration(void);
void NVIC_Configuration(void);
u8 table[]=2010-4-30;
u8 table1[3]=hjw;
u8 table2[2]=00;
void Delay(unsigned short time)//nms
{
unsigned short i, j;
for(; time > 0; time--){
for(j = 0; j 10; j++){
for(i = 0; i 1000; i++);
}
}
}
int main(void)
{
//u8 i;
/* System Clocks Configuration */
RCC_Configuration();
/* NVIC configuration */
NVIC_Configuration();
/* Configure the GPIO ports */
GPIO_Configuration();
lcd1602_init();
ds1302set_time();
while (1)
{
ds1302read_time();
ds1302d_convert();
write1602_Achar(1,2,disp[8]);
write1602_Achar(1,3,disp[9]); //显示 时
write1602_Achar(1,4,0x0a);//':'
write1602_Achar(1,5,disp[10]);
write1602_Achar(1,6,disp[11]);
write1602_Achar(1,7,0x0a);//显示分
write1602_Achar(1,8,disp[12]);
write1602_Achar(1,9,disp[13]);//显示秒
}
}
void RCC_Configuration(void)
{
RCC_DeInit();
/* Enable HSE */
RCC_HSEConfig(RCC_HSE_ON);
/* Wait till HSE is ready */
HSEStartUpStatus = RCC_WaitForHSEStartUp();
if(HSEStartUpStatus == SUCCESS)
{
/* Enable Prefetch Buffer */
FLASH_PrefetchBufferCmd(FLASH_PrefetchBuffer_Enable);
/* Flash 2 wait state */
FLASH_SetLatency(FLASH_Latency_2);
/* HCLK = SYSCLK */
RCC_HCLKConfig(RCC_SYSCLK_Div1);
/* PCLK2 = HCLK */
RCC_PCLK2Config(RCC_HCLK_Div1);
/* PCLK1 = HCLK/2 */
RCC_PCLK1Config(RCC_HCLK_Div2);
/* PLLCLK = 8MHz * 9 = 72 MHz */
RCC_PLLConfig(RCC_PLLSource_HSE_Div1, RCC_PLLMul_9);
/* Enable PLL */
RCC_PLLCmd(ENABLE);
/* Wait till PLL is ready */
while(RCC_GetFlagStatus(RCC_FLAG_PLLRDY) == RESET)
{
}
/* Select PLL as system clock source */
RCC_SYSCLKConfig(RCC_SYSCLKSource_PLLCLK);
/* Wait till PLL is used as system clock source */
while(RCC_GetSYSCLKSource() != 0x08)
{
}
}
/* Enable Key Button GPIO Port, GPIO_LED and AFIO clock */
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC|RCC_APB2Periph_GPIOA| RCC_APB2Periph_GPIOD | RCC_APB2Periph_GPIOB
| RCC_APB2Periph_AFIO, ENABLE);
}
/*******************************************************************************
* Function Name : GPIO_Configuration
* Description : Configures the different GPIO ports.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin =GPIO_Pin_All;
GPIO_InitStructure.GPIO_Speed =GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_Mode =GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, GPIO_InitStructure);
}
void NVIC_Configuration(void)
{
//NVIC_InitTypeDef NVIC_InitStructure;
#ifdef VECT_TAB_RAM
/* Set the Vector Table base location at 0x20000000 */
NVIC_SetVectorTable(NVIC_VectTab_RAM, 0x0);
#else /* VECT_TAB_FLASH */
/* Set the Vector Table base location at 0x08000000 */
NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x0);
#endif
}
- 51单片机+带字库液晶12864+DS1302数字时钟C源程序(12-03)
- DS1302时钟汇编程序数码管显示时间(12-02)
- MSP430与DS1302之1602显示(12-02)
- Atmega16与DS1302数码管显示程序(12-02)
- DS1302用1602显示加按键调时(12-02)
- 51单片机的ds1302驱动程序(12-01)