代码搜索结果
找到约 10,000 项符合
Embedded 的代码
compose.cpp
//: C14:Compose.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Reuse code with composition
#include "Use
compose2.cpp
//: C14:Compose2.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Private embedded objects
#include "Usefu
compose.cpp
//: C14:Compose.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Reuse code with composition
#in
compose2.cpp
//: C14:Compose2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Private embedded objects
#incl
makefile
ALL: embedded.bin
LFLAGS = -Tlink.cmd -L../../libepc -Map embedded.map
CFLAGS = -Wall -I../ -I../../libepc
EMBEDDED_OBJS = embedded.o
embedded.bin: $(EMBEDDED_OBJS) link.cmd
ld $(EMBEDDED_
makefile
ALL: embedded.bin
LFLAGS = -Tlink.cmd -Map link.map
CFLAGS = -Wall
EMBEDDED_OBJS = program10.o priority.o
embedded.bin: $(EMBEDDED_OBJS) link.cmd
ld $(EMBEDDED_OBJS) ucos_ii.a $(LFLAGS)
compose.cpp
//: C14:Compose.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Reuse code with composition
compose2.cpp
//: C14:Compose2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Private embedded objects
compose.cpp
//: C14:Compose.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Reuse code with composition
#in