A few more Calypso/Compal updates

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4514 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-03-24 18:14:23 +00:00
parent 2c8925e08b
commit f208049c94
2 changed files with 17 additions and 0 deletions

View File

@ -2588,3 +2588,11 @@
system time with a hardware RTC. This function is called normally at power
up but may also need to be called when recovering from certain low-power
usage states where the system time is no longer accurate.
* arch/arm/src/calypso and arch/arm/include/calypso: Support for the TI "Calypso"
phone processor. Contributed by Denis Carilki and includes the work of Denis,
Alan Carvalho de Assis, and Stefan Richter.
* configs/compal_e88 and configs/compal_e99: Support for Compal e88 and e99 phones
Contributed by Denis Carilki and includes the work of Denis, Alan Carvalho de
Assis, and Stefan Richter.

View File

@ -33,8 +33,15 @@
#
############################################################################
# File descriptor support is needed for this driver
ifneq ($(CONFIG_NFILE_DESCRIPTORS),0)
# The sercomm driver should not be build for all platforms. Only build it
# is so configured
ifeq ($(CONFIG_SERCOMM_CONSOLE),y)
# Include serial drivers
CSRCS += console.c uart.c
@ -43,4 +50,6 @@ CSRCS += console.c uart.c
DEPPATH += --dep-path sercomm
VPATH += :sercomm
endif
endif