24 lines
582 B
C
24 lines
582 B
C
/*
|
|
* global.h
|
|
*
|
|
* Created on: Nov 17, 2025
|
|
* Author: jomaa
|
|
*/
|
|
|
|
#ifndef INC_GLOBAL_H_
|
|
#define INC_GLOBAL_H_
|
|
|
|
#include "cmsis_os.h"
|
|
#include "FreeRTOS.h"
|
|
#include "semphr.h"
|
|
#include "../../BSP/stm32l475e_iot01.h"
|
|
#include "../../BSP/stm32l475e_iot01_accelero.h"
|
|
#include "../../BSP/stm32l475e_iot01_gyro.h"
|
|
#include "../../BSP/stm32l475e_iot01_hsensor.h"
|
|
#include "../../BSP/stm32l475e_iot01_magneto.h"
|
|
#include "../../BSP/stm32l475e_iot01_psensor.h"
|
|
#include "../../BSP/stm32l475e_iot01_qspi.h"
|
|
#include "../../BSP/stm32l475e_iot01_tsensor.h"
|
|
|
|
#endif /* INC_GLOBAL_H_ */
|