mac_api.cpp

来自「实现应用层直接向MAC层发送数据」· C++ 代码 · 共 27 行

CPP
27
字号
/******************************************************************************
 * 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 + =
减小字号Ctrl + -
显示快捷键?