代码搜索:Mac 开发教程
找到约 10,000 项符合「Mac 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/426950/8990209
exe mac.exe
www.eeworm.com/read/426950/8990212
res mac.res
www.eeworm.com/read/426950/8990222
obj mac.obj
www.eeworm.com/read/426950/8990234
h mac.h
// mac.h : PROJECT_NAME 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // 主符号
// CmacApp:
www.eeworm.com/read/426950/8990237
ncb mac.ncb
www.eeworm.com/read/283700/8995311
h mac.h
#ifndef __MAC_H
#define __MAC_H
#define RX_FRAME_SIZE 64
#define TX_FRAME_SIZE 16
struct frame_desc_struct {
unsigned long frame_data_ptr; // [31] Ownership 0=CPU, 1=BDMA
unsigned long reserved;
www.eeworm.com/read/283700/8995374
c mac.c
#include "types.h"
#include "bioscall.h"
#include "eth.h"
#include "board.h"
#include "mac.h"
static struct frame_desc_struct rx_fd[RX_FRAME_SIZE];
static struct frame_desc_struct tx_fd[TX_FRAM
www.eeworm.com/read/283700/8995393
o mac.o
www.eeworm.com/read/283667/8999462
h mac.h
#ifndef __MAC_H
#define __MAC_H
int board_eth_init(void);
int board_eth_send(unsigned char *data, unsigned int len);
int board_eth_rcv(unsigned char *data, unsigned int *len);
int board_eth_get_addr(
www.eeworm.com/read/283667/8999504
c mac.c
#include "..\config.h"
#include "AT91RM9200.h"
#include "lib_AT91RM9200.h"
#include "Emac.h"
#include "eth.h"
#include "mac.h"
#include "utils.h"
#include "console.h"
#ifdef TFTP_SUPPORT