components_init.h 244 B

123456789101112131415
  1. /*
  2. * components_init.h
  3. *
  4. */
  5. #ifndef __COMPONENTS_INIT_H__
  6. #define __COMPONENTS_INIT_H__
  7. /**
  8. * Initializes components in RT-Thread
  9. * notes: this function must be invoked in thread
  10. */
  11. void rt_components_init(void);
  12. #endif