Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

29 righe
670 B

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