-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstruct_code.h
More file actions
33 lines (30 loc) · 1.02 KB
/
struct_code.h
File metadata and controls
33 lines (30 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef STRUCT_CODE_H
#define STRUCT_CODE_H
/**
*\file
*\brief Файл данных для генератора кода
*\author Гусенков.С.В
*\version 1.0
*\date 23 Декабря 2015 года
*В этом файле находится набор стрктур для генерации кода
*/
#include "struct_gpio.h" ///< Артур
#include "struct_clk.h" ///< Артур
//#include "struct_timer.h" ///< Миша
#include "struct_uart.h" ///< Ира
#include "struct_ssp.h" ///< Леша
#include "struct_pvdcs.h"///<Женя =)
/**
*\brief Настройка опоры
*Эта структура предназначена для настройки опоры микроконтроллера 1986VE1T
*/
struct OporaDataStruct
{
struct GPIOStruct GPIOPort[6]; ///< настройка портов микроконтроллера
struct CLK_GLOBAL OPORA_CLOCK;
//struct TIMER_Global PER_TIMER[4];
struct PVDCS_GLOBAL PVDCS;
struct uart_global PER_UART[2];
struct global_SSP PER_SSP[3];
};
#endif // STRUCT_CODE_H