Subversion Repositories AFRtranscoder

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. //////////////////////////////////////////////////
  2. /// Header file for tinyWB module
  3. /////////////////////////////////////////////////
  4.  
  5. #pragma once
  6. #include "main.h"
  7.  
  8.  
  9. #if defined __cplusplus
  10. extern "C"
  11. {
  12. #endif
  13.  
  14.    
  15.  
  16.     struct usart_ctl;
  17.  
  18.     /// @brief Poll the serial port for activity from the tinyWB module
  19.     /// @param uc Serial port structure
  20.     /// @param AFR  Air fuel ratio
  21.     /// @param heaterTemp_ Heater temperature
  22.     /// @return true if the value has been read
  23.     char pollTinyWB(struct usart_ctl *uc, float *AFR, float *heaterTemp_);
  24.  
  25. #if defined __cplusplus
  26. }
  27. #endif
  28.