26 lines
1.1 KiB
C
26 lines
1.1 KiB
C
/*==============================================================================
|
||
* Шаблон проекта для К1921ВК035 с использованием бибилотеки PLIB035
|
||
*------------------------------------------------------------------------------
|
||
* ЦНИИ СЭТ, Разваляев Алексей <wot890089@mail.ru>
|
||
*==============================================================================
|
||
* ЦНИИ СЭТ
|
||
*==============================================================================
|
||
*/
|
||
#ifndef __MAIN_H
|
||
#define __MAIN_H
|
||
|
||
//-- Includes ------------------------------------------------------------------
|
||
#include "periph_config.h"
|
||
#include "plib035.h"
|
||
#include "retarget_conf.h"
|
||
#include "mylibs_include.h"
|
||
|
||
//-- Defines -------------------------------------------------------------------
|
||
|
||
//-- Exported variables --------------------------------------------------------
|
||
|
||
//-- Exported functions prototypes ---------------------------------------------
|
||
void Error_Handler(void);
|
||
|
||
#endif /* __MAIN_H */
|