代码搜索:SerialBase

找到约 14 项符合「SerialBase」的源代码

代码结果 14
www.eeworm.com/read/384760/2597880

java serialbase.java

/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000-2006 * Oracle Corporation. All rights reserved. * * $Id: SerialBase.java,v 12.3 2006/08/31 18:14:05 bostic
www.eeworm.com/read/309912/13662307

makefile

CC = arm-linux-gcc CFLAGS = -Wall -O -g OBJS = MsgQue.o SerialBase.o SerialComm.o test01.o test:$(OBJS) $(CC) $(OBJS) -o test test01.o: test01.c $(CC) $(CFLAGS) -c test01.c -o test01.o MsgQue
www.eeworm.com/read/309912/13662308

am makefile.am

bin_PROGRAMS = test01 test01_SOURCES = test01.c SerialBase.c SerialBase.h MsgQue.c MsgQue.h \ SerialComm.c SerialComm.h # set the include path found by configure INCLUDES= $(all_includes) #
www.eeworm.com/read/309912/13662314

c test01.c

#include "SerialBase.h" int main(void) { //Step 1: Initilize the DLL int retVal = DllInit("/dev/ttyS0"); if(!retVal) { printf("DllInit is sucessful! \n"); } else { return 1;