Init du .h de la telecommande
這個提交存在於:
父節點
207ee64a7f
當前提交
43cb31a9ac
共有 3 個檔案被更改,包括 70 行新增 和 26 行删除
|
@ -0,0 +1,6 @@
|
||||||
|
#include "MyTimer.h"
|
||||||
|
#include "stm32f10x.h"
|
||||||
|
#include "Driver_GPIO.h"
|
||||||
|
#include "Plateau.h"
|
||||||
|
#include "Telecommande.h"
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
#ifndef MYTELCOMMANDE_H
|
||||||
|
#define MYTELCOMMANDE_H
|
||||||
|
#include "stm32f10x.h"
|
||||||
|
|
||||||
|
/* Configuration de l'UART */
|
||||||
|
void Init_UART (USART_TypeDef * UART);
|
||||||
|
|
||||||
|
/* Envoie de messages */
|
||||||
|
void Send_Message (char message[]);
|
||||||
|
|
||||||
|
/* Reception de message */
|
||||||
|
void Receive_Message (void (* pFonction) (char));
|
||||||
|
//pFonction traitera le message
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
檔案差異因為一行或多行太長而無法顯示
載入中…
新增問題並參考