port_microrl.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /******************************* (C) LiteMesh **********************************
  2. * @module Console
  3. * @file portConsole.h
  4. * @version 1.0.0
  5. * @date XX.XX.XXXX
  6. * $brief Port functions console lib
  7. *******************************************************************************
  8. * @history Version Author Comment
  9. * XX.XX.XXXX 1.0.0 Telenkov D.A. First release.
  10. *******************************************************************************
  11. */
  12. /* Define to prevent recursive ----------------------------------------------*/
  13. #ifndef PORT_MICRORL_H
  14. #define PORT_MICRORL_H
  15. /**
  16. * @brief
  17. */
  18. void MICRORL_Init(void);
  19. /**
  20. * @brief
  21. */
  22. void MICRORL_GetChar(uint8_t ch);
  23. /**
  24. * @brief Print callback for microrl library
  25. */
  26. void print (const char * str);
  27. int execute (int argc, const char * const * argv);
  28. void print_help (void);
  29. #endif /* #ifndef PORTCONSOLE_H */
  30. /****************************** (C) LiteMesh ***************** end of file ****/