24 lines
512 B
C
Executable File
24 lines
512 B
C
Executable File
/*++
|
|
|
|
Copyright (c) 2021 Motorcomm Corporation.
|
|
Confidential and Proprietary. All rights reserved.
|
|
|
|
This is Motorcomm Corporation NIC driver relevant files. Please don't copy, modify,
|
|
distribute without commercial permission.
|
|
|
|
--*/
|
|
|
|
#ifndef _MP_DBG_H
|
|
#define _MP_DBG_H
|
|
|
|
//
|
|
// Message verbosity: lower values indicate higher urgency
|
|
//
|
|
#define MP_OFF 0
|
|
#define MP_ERROR 1
|
|
#define MP_WARN 2
|
|
#define MP_TRACE 3
|
|
#define MP_INFO 4
|
|
#define MP_LOUD 5
|
|
|
|
#endif // _MP_DBG_H
|