📄 mac_api.cpp
字号:
/******************************************************************************
* FILENAME: mac_api.c
*
* DESCRIPTION: This file implements the interfaces of mac_api.h.
*
* Copyright (C) 2008 BUPT
*
* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF BUPT. The copyright
* notice above does not evidence any actual or intended publication of such
* source code.
*
*******************************************************************************/
#include "stdafx.h"
#include "mac_api.h"
int SendMessageToMAC(uint8_t *msg, uint32_t msgLen)
{
return 0;
}
int GetMessageFromMAC(uint8_t *msgBuffer, uint32_t msgBufferLen)
{
msgBuffer[0] = '\0';
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -