📄 initialisation.h
字号:
////////////////////////////////////////////////////////////////
// initialisation.h //
////////////////////////////////////////////////////////////////
#ifndef _INIT_H_
#define _INIT_H_
//Include fichiers Microchip
#include "p30f4011.h"
#include "timer.h"
#include "adc10.h"
#include "uart.h"
#include "stdio.h"
//Include fichiers du projet
#include "constantes.h"
#include "variables_globales.h"
#include "prototypes.h"
/* ********************
PORTS
******************** */
void initialisation_port(void);
/* ********************
TIMER
******************** */
void initialisation_timer(void);
/* ********************
UART
******************** */
void initialisation_UART(void);
/* ********************
ADC
******************** */
void initialisation_ADC(void);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -