Files
luban-lite-t3e-pro/bsp/common/include/aic_utils.h

23 lines
382 B
C
Raw Normal View History

2023-08-30 16:21:18 +08:00
/*
* Copyright (c) 2023, Artinchip Technology Co., Ltd
*
* SPDX-License-Identifier: Apache-2.0
*/
2024-04-03 16:40:57 +08:00
#ifndef __AIC_UTILS_H_
#define __AIC_UTILS_H_
2023-08-30 16:21:18 +08:00
#ifdef __cplusplus
extern "C" {
#endif
void hexdump(unsigned char *buf, unsigned long len, int groupsize);
2024-04-03 16:40:57 +08:00
void show_speed(char *msg, unsigned long len, unsigned long us);
2023-08-30 16:21:18 +08:00
#ifdef __cplusplus
}
#endif
2024-04-03 16:40:57 +08:00
#endif /* __AIC_UTILS_H_ */