log.h 465 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2020 Koen Zandberg <koen@bergzand.net>
  3. *
  4. * This file is subject to the terms and conditions of the GNU Lesser
  5. * General Public License v2.1. See the file LICENSE in the top level
  6. * directory for more details.
  7. */
  8. /**
  9. * This file overrides the NimBLE log definitions to prevent conflicts with the
  10. * RIOT-provided LOG defines
  11. */
  12. #ifndef _BLEMAN_LOG_H
  13. #define _BLEMAN_LOG_H
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. struct log {
  18. };
  19. #endif