?? 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 + -