main.h 478 B

123456789101112131415161718192021222324
  1. /**
  2. ******************************************************************************
  3. * @file : main.h
  4. * @brief : Header for main.c file.
  5. * This file contains the common defines of the application.
  6. ******************************************************************************
  7. **/
  8. #ifndef __MAIN_H__
  9. #define __MAIN_H__
  10. #include "type.h"
  11. int ble_configure_all(uint8_t* data, uint16_t len);
  12. void reset_prepare(void);
  13. #endif