27 lines
833 B
C
27 lines
833 B
C
//************************************************************
|
|
// Copyright (c)
|
|
// FileName : SC_it.h
|
|
// Author :
|
|
// Function : Interrupt service program header file
|
|
// Local Functions:
|
|
// Date : 2022/04/07
|
|
// Version : V1.3
|
|
//*************************************************************
|
|
|
|
/***********************user_code_area*********************/
|
|
/*<UserCodeStart>*/
|
|
/*<UserCodeEnd>*/
|
|
/**********************.user_code_area.********************/
|
|
|
|
#ifndef _SC_IT_H_
|
|
#define _SC_IT_H_
|
|
|
|
#if defined (SC95F8x1x) || defined (SC95F7x1x) || defined (SC95F8x2x) || defined (SC95F7x2x) || defined (SC95F8x3x) || defined (SC95F7x3x) \
|
|
|| defined (SC95F8x6x) || defined (SC95F7x6x) || defined (SC95F8x1xB) || defined (SC95F7x1xB)
|
|
#include "sc95f_conf.h"
|
|
#else
|
|
#include "sc92f_conf.h"
|
|
#endif
|
|
|
|
#endif
|