• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2023 Huawei Device Co., Ltd.
3  *
4  * HDF is dual licensed: you can use it either under the terms of
5  * the GPL, or the BSD license, at your option.
6  * See the LICENSE file in the root of this repository for complete details.
7  */
8 
9 #include "hdf_log.h"
10 #include "uart_if.h"
11 
UartBlockWrite(DevHandle handle,uint8_t * data,uint32_t size)12 int32_t UartBlockWrite(DevHandle handle, uint8_t *data, uint32_t size)
13 {
14     (void)handle;
15     (void)data;
16     (void)size;
17     HDF_LOGI("UartBlockWrite: success!");
18     return HDF_SUCCESS;
19 }
20