initialisation.h

来自「Ultrasonor captor with Microchip dsPIC33」· C头文件 代码 · 共 41 行

H
41
字号
////////////////////////////////////////////////////////////////
//                     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 + =
减小字号Ctrl + -
显示快捷键?