Projet voilier 4IRA1 Arnaud Vergnet Marino Benassai Bastien Picco Yohan Simard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Scheduler.h 411B

12345678910111213141516171819202122
  1. #ifndef SCHEDULER_H
  2. #define SCHEDULER_H
  3. #include "stm32f103xb.h"
  4. /**
  5. * @brief Configure l'horloge interne comme ordonanceur toutes les 1ms
  6. * @note
  7. * @param (void)* it_callback : Tache de fond à executer
  8. * @retval None
  9. */
  10. void Scheduler_conf(void (*it_callback) (void));
  11. /**
  12. * @brief Démarre l'ordonanceur
  13. * @note
  14. * @param None
  15. * @retval None
  16. */
  17. void Scheduler_start(void);
  18. #endif