Freedom K25Z: Fix missing file inclusion in board Makefile. From Alan Carvalho de Assis
This commit is contained in:
parent
0306ba558a
commit
8b8dd03e92
|
@ -1,7 +1,7 @@
|
|||
############################################################################
|
||||
# configs/freedom-kl25z/src/Makefile
|
||||
#
|
||||
# Copyright (C) 2013 Gregory Nutt. All rights reserved.
|
||||
# Copyright (C) 2013-2014 Gregory Nutt. All rights reserved.
|
||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
@ -42,6 +42,10 @@ AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|||
|
||||
CSRCS = kl_boardinitialize.c
|
||||
|
||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||
CSRCS += kl_nsh.c
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_WL_CC3000),y)
|
||||
CSRCS += kl_wifi.c
|
||||
endif
|
||||
|
|
|
@ -3691,12 +3691,12 @@ Configurations
|
|||
the full bridge test yet anyway because there still is no host-side
|
||||
test driver in apps/examples/bridge.
|
||||
2014-11-18: Continued working with EMAC1: It does not work. No
|
||||
errors are reported, link auto-negotiation works without error but I
|
||||
errors are reported, link auto-negotiation works without error, but I
|
||||
cannot send or receive anything on EMAC1: TX transfers all timeout
|
||||
with no interrupts and nothing appearing on the line; RX transfers
|
||||
are not received... no RX interrupts and no RX status gets set. This
|
||||
appears to be some very low-level issue, perhaps a pin configuration
|
||||
program. But I am not seeing it yet.
|
||||
problem. But I am not seeing it yet. No interrupts are ever received.
|
||||
|
||||
dramboot:
|
||||
|
||||
|
|
Loading…
Reference in New Issue