47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
|
/********************************** (C) COPYRIGHT *******************************
|
||
|
* File Name : main.c
|
||
|
* Author : WCH
|
||
|
* Version : V1.0.0
|
||
|
* Date : 2021/06/06
|
||
|
* 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
|
||
|
*task1 and task2 alternate printing
|
||
|
*/
|
||
|
|
||
|
#include "debug.h"
|
||
|
#include "FreeRTOS.h"
|
||
|
#include "task.h"
|
||
|
|
||
|
|
||
|
|
||
|
/*********************************************************************
|
||
|
* @fn main
|
||
|
*
|
||
|
* @brief Main program.
|
||
|
*
|
||
|
* @return none
|
||
|
*/
|
||
|
int main(void)
|
||
|
{
|
||
|
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
|
||
|
SystemCoreClockUpdate();
|
||
|
Delay_Init();
|
||
|
USART_Printf_Init(115200);
|
||
|
|
||
|
printf("SystemClk:%d\r\n", SystemCoreClock);
|
||
|
printf( "ChipID:%08x\r\n", DBGMCU_GetCHIPID() );
|
||
|
printf("FreeRTOS Kernel Version:%s\r\n", tskKERNEL_VERSION_NUMBER);
|
||
|
|
||
|
|
||
|
while(1) {
|
||
|
printf("shouldn't run at here!!\n");
|
||
|
}
|
||
|
}
|