/****************************************************************************/
/ \file main.c
**
** A detailed description is available at
** @link Sample Group Some description @endlink
**
** - 2017-05-17 1.0 CJ First version for Device Driver Library of Module.
**
******************************************************************************/
/******************************************************************************
Include files
******************************************************************************/
#include “wdt.h”
#include “lpm.h”
#include “gpio.h”
/******************************************************************************
Local pre-processor symbols/macros (’#define’)
******************************************************************************/
/******************************************************************************
Global variable definitions (declared in header file with ‘extern’)
******************************************************************************/
/******************************************************************************
Local type definitions (‘typedef’)
******************************************************************************/
/******************************************************************************
Local function prototypes (‘static’)
******************************************************************************/
/******************************************************************************
Local variable definitions (‘static’) *
******************************************************************************/
/******************************************************************************
Local pre-processor symbols/macros (’#define’)
******************************************************************************/
#define T1_PORT (0)
#define T1_PIN (3)
/*****************************************************************************
Function implementation - global (‘extern’) and local (‘static’)
****************************************************************************/
/
** \brief Main function of project
**
** \return uint32_t return value, if needed
**
** This sample
**
******************************************************************************/
|