mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-09 14:20:50 +02:00
14 lines
238 B
C
14 lines
238 B
C
#ifndef SERVICECOM_H
|
|
#define SERVICECOM_H
|
|
|
|
#include "stm32f1xx_hal.h"
|
|
#include "common.h"
|
|
#include "cmsis_os.h"
|
|
|
|
extern osSemaphoreId synchroMesHandle;
|
|
extern char RxBuffer[TRAME_SIZE_RECEIPT];
|
|
|
|
void comInit(void);
|
|
|
|
#endif
|
|
|