Simulator works.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10080 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
fed649d56c
commit
ea31cfdcc0
|
@ -139,7 +139,7 @@ CPPWARN = -Wall -Wextra -Wundef
|
||||||
# Compiler settings
|
# Compiler settings
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
##############################################################################
|
###################cd ..###########################################################
|
||||||
# Start of user section
|
# Start of user section
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ endif
|
||||||
#
|
#
|
||||||
|
|
||||||
# Define project name here
|
# Define project name here
|
||||||
PROJECT = ch
|
PROJECT = ch.exe
|
||||||
|
|
||||||
# Imported source files and paths
|
# Imported source files and paths
|
||||||
CHIBIOS = ../../..
|
CHIBIOS = ../../..
|
||||||
|
|
|
@ -34,7 +34,7 @@ endif
|
||||||
ifeq ($(BUILDDIR),.)
|
ifeq ($(BUILDDIR),.)
|
||||||
BUILDDIR = build
|
BUILDDIR = build
|
||||||
endif
|
endif
|
||||||
OUTFILES = $(BUILDDIR)/$(PROJECT).exe
|
OUTFILES = $(BUILDDIR)/$(PROJECT)
|
||||||
|
|
||||||
|
|
||||||
# Source files groups and paths
|
# Source files groups and paths
|
||||||
|
@ -143,7 +143,7 @@ else
|
||||||
@$(CC) -c $(ASXFLAGS) -I. $(IINCDIR) $< -o $@
|
@$(CC) -c $(ASXFLAGS) -I. $(IINCDIR) $< -o $@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
%.exe: $(OBJS)
|
$(BUILDDIR)/$(PROJECT): $(OBJS)
|
||||||
ifeq ($(USE_VERBOSE_COMPILE),yes)
|
ifeq ($(USE_VERBOSE_COMPILE),yes)
|
||||||
@echo
|
@echo
|
||||||
$(LD) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
|
$(LD) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
|
||||||
|
|
|
@ -59,6 +59,7 @@ a series of important improvements, new features have been added.
|
||||||
- New kernel hooks for a more flexible code instrumentation.
|
- New kernel hooks for a more flexible code instrumentation.
|
||||||
- Removed I/O queues, now the HAL has an improved equivalent.
|
- Removed I/O queues, now the HAL has an improved equivalent.
|
||||||
- Experimental NASA OSAL implementation.
|
- Experimental NASA OSAL implementation.
|
||||||
|
- Posix simulator added.
|
||||||
|
|
||||||
*** What's new in NIL 2.0.0 ***
|
*** What's new in NIL 2.0.0 ***
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue