Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

33 lignes
853 B

  1. #ifndef PLSR_CORE_H
  2. #define PLSR_CORE_H
  3. #include "plsr_job.h"
  4. #include "plsr_types.h"
  5. #include <stdint.h>
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. PLSR_RESULT PlsrInit(void);
  10. void PlsrTask(void *argument);
  11. void PlsrProcess(void);
  12. PLSR_RESULT PlsrPostStart(const PLSR_START_REQUEST *request);
  13. PLSR_RESULT PlsrPostCall(const PLSR_CALL *call);
  14. PLSR_RESULT PlsrPostCommand(const PLSR_COMMAND *command);
  15. PLSR_RESULT PlsrPostEvent(uint8_t axis, uint32_t eventMask);
  16. PLSR_RESULT PlsrGetStatus(uint8_t axis, PLSR_STATUS *status);
  17. PLSR_RESULT PlsrGetLastParseDetail(uint8_t axis,
  18. PLSR_PARSE_DETAIL *detail);
  19. PLSR_RESULT PlsrStateTransition(uint8_t axis,
  20. PLSR_STATE target,
  21. PLSR_TRANSITION_REASON reason);
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* PLSR_CORE_H */