| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /*
- * Copyright (c) 2006-2020, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2020-05-28 Supperthomas the first version
- */
- #include <stdio.h>
- #include <stdbool.h>
- #include <string.h>
- #include <stdarg.h>
- #include "bsal_osif.h"
- void *bsal_osif_malloc(uint32_t len)
- {
- void *p = NULL;
- /* TODO */
- return p;
- }
- void bsal_osif_free(void *p)
- {
- /* TODO */
- }
- #if 0
- int bsal_osif_printf_warn(const char *fmt, ...)
- {
- /* TODO */
- return 0;
- }
- int bsal_osif_printf_info(const char *fmt, ...)
- {
- /* TODO */
- return 0;
- }
- int bsal_osif_printf_dbg(const char *fmt, ...)
- {
- /* TODO */
- return 0;
- }
- int bsal_osif_printf_err(const char *fmt, ...)
- {
- /* TODO */
- return 0;
- }
- #endif
- void bsal_osif_delay(uint32_t ms)
- {
- /* TODO */
-
- }
|