dumber/software/dumber3/Core/Inc/config.h
2022-09-15 15:44:21 +02:00

18 lines
465 B
C

/*
* config.h
*
* Created on: 14 sept. 2022
* Author: dimercur
*/
#include "stm32l0xx_hal.h"
#include "cmsis_os.h"
#define STACK_SIZE 100
#define PriorityMoteurs (configMAX_PRIORITIES -1)
#define PriorityXbee (configMAX_PRIORITIES -2)
#define PriorityBatterie (configMAX_PRIORITIES -3)
#define PrioritySequenceur (configMAX_PRIORITIES -4)
#define PriorityLeds (configMAX_PRIORITIES -5)
TickType_t msToTicks(TickType_t ms);