init.h 329 B

12345678910111213141516171819202122
  1. #ifndef HM_PORTING_INIT_H
  2. #define HM_PORTING_INIT_H
  3. #include "hm_config.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifdef HM_USING_STACK_NIMBLE
  8. extern int hm_nimble_init(void);
  9. #endif
  10. #ifdef HM_USING_STACK_BTSTACK
  11. extern int btstack_rtthread_port_init(void);
  12. #endif
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* HM_PORTING_INIT_H */