18 lines
415 B
C
18 lines
415 B
C
/*
|
|
* Copyright (c) @CompanyNameMagicTag 2021-2021. All rights reserved.
|
|
* Description: diag mem
|
|
* This file should be changed only infrequently and with great care.
|
|
*/
|
|
|
|
#ifndef DIAG_MEM_H
|
|
#define DIAG_MEM_H
|
|
|
|
#include "diag_common.h"
|
|
#include "diag_channel.h"
|
|
#include "diag_pkt.h"
|
|
|
|
errcode_t diag_pkt_need_cross_task(diag_pkt_handle_t *pkt);
|
|
void diag_pkt_free(diag_pkt_handle_t *pkt);
|
|
|
|
#endif
|