Skip to content
Snippets Groups Projects
Commit 8b8dd03e authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Freedom K25Z: Fix missing file inclusion in board Makefile. From Alan Carvalho de Assis

parent 0306ba55
No related branches found
No related tags found
No related merge requests found
############################################################################
# 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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment