console.h 220 B

1234567891011121314
  1. /*
  2. * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef _CONSOLE_H
  7. #define _CONSOLE_H
  8. #include <stdio.h>
  9. #define console_printf printf
  10. #endif