ZD-BMS-CH/ZDBMS/BMS_CC/User/main.c

59 lines
1.5 KiB
C
Raw Normal View History

2025-02-19 06:18:30 +00:00
/********************************** (C) COPYRIGHT *******************************
* File Name : main.c
* Author : WCH
* Version : V1.0.0
* Date : 2023/12/26
* Description : Main program body.
*********************************************************************************
* Copyright (c) 2021 Nanjing Qinheng Microelectronics Co., Ltd.
* Attention: This software (modified or not) and binary are used for
* microcontroller manufactured by Nanjing Qinheng Microelectronics.
*******************************************************************************/
/*
*@Note
*USART Print debugging routine:
*USART1_Tx(PA9).
*This example demonstrates using USART1(PA9) as a print debug port output.
*
*/
#include "debug.h"
2025-03-15 01:41:28 +00:00
#include "../init/inc/init.h"
#include "../app/inc/app.h"
2025-02-19 06:18:30 +00:00
/* Global typedef */
/* Global define */
/* Global Variable */
/*********************************************************************
* @fn main
*
* @brief Main program.
*
* @return none
*/
2025-03-15 01:41:28 +00:00
2025-02-19 06:18:30 +00:00
int main(void)
{
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
SystemCoreClockUpdate();
Delay_Init();
USART_Printf_Init(115200);
2025-03-15 01:41:28 +00:00
all_hardWare_init();
2025-02-19 06:18:30 +00:00
printf("SystemClk:%d\r\n", SystemCoreClock);
printf( "ChipID:%08x\r\n", DBGMCU_GetCHIPID() );
2025-03-15 01:41:28 +00:00
uint8_t i = 1;
2025-02-19 06:18:30 +00:00
while(1)
{
2025-03-15 01:41:28 +00:00
2025-02-19 06:18:30 +00:00
Delay_Ms(1000);
2025-03-15 01:41:28 +00:00
GPIO_WriteBit(GPIOC, GPIO_Pin_13, (i==0) ? (i=Bit_SET):(i=Bit_RESET)); //<2F><>תGPIO
2025-02-19 06:18:30 +00:00
printf("This is printf example cc\r\n");
}
}