mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-08 22:00:49 +02:00
18 lines
465 B
C
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);
|