mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-09 14:20:50 +02:00
22 lines
627 B
C
22 lines
627 B
C
/*
|
|
* config.h
|
|
*
|
|
* Created on: 14 sept. 2022
|
|
* Author: dimercur
|
|
*/
|
|
#include "stm32l0xx_hal.h"
|
|
#include "cmsis_os.h"
|
|
|
|
#define STACK_SIZE 0x100
|
|
|
|
#define PriorityMoteurs (configMAX_PRIORITIES -1)
|
|
#define PriorityXbeeRX (configMAX_PRIORITIES -2)
|
|
#define PriorityXbeeTX (configMAX_PRIORITIES -3)
|
|
#define PriorityBatterie (configMAX_PRIORITIES -4)
|
|
#define PrioritySequenceurMain (configMAX_PRIORITIES -5)
|
|
#define PrioritySequenceurTimeout (configMAX_PRIORITIES -6)
|
|
#define PriorityLeds (configMAX_PRIORITIES -7)
|
|
|
|
#define BATTERIE_PERIODE_SCRUTATION 1000
|
|
|
|
TickType_t msToTicks(TickType_t ms);
|