sample.h 498 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2006-2020, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-06-03 Rick the first version
  9. */
  10. #ifndef APPLICATIONS_LORAWAN_RUN_H_
  11. #define APPLICATIONS_LORAWAN_RUN_H_
  12. #include "stdbool.h"
  13. void LoRaTaskInit(void);
  14. void SendDoneCallback(uint8_t *buffer,uint8_t size);
  15. void ReceiveDoneCallback(uint8_t *buffer,uint8_t size);
  16. void LoRaWanInit(void);
  17. #endif /* APPLICATIONS_LORARUN_H_ */