summaryrefslogtreecommitdiff
path: root/apps/ramtron
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-19 15:02:01 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-19 15:02:01 +0000
commit4c0055e628afb43fa2b2919376ab96a82ede6af8 (patch)
tree828a641d8c7195ac3073ea3daa81755dbc322ef4 /apps/ramtron
parentbc284a1fde0acaadb4c88bee73f9a4d85323196b (diff)
downloadnuttx-4c0055e628afb43fa2b2919376ab96a82ede6af8.tar.gz
nuttx-4c0055e628afb43fa2b2919376ab96a82ede6af8.tar.bz2
nuttx-4c0055e628afb43fa2b2919376ab96a82ede6af8.zip
Move VSN apps to apps/vsn
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3397 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/ramtron')
-rw-r--r--apps/ramtron/Makefile103
-rw-r--r--apps/ramtron/README.txt7
-rw-r--r--apps/ramtron/ramtron.c97
3 files changed, 0 insertions, 207 deletions
diff --git a/apps/ramtron/Makefile b/apps/ramtron/Makefile
deleted file mode 100644
index d2430f747..000000000
--- a/apps/ramtron/Makefile
+++ /dev/null
@@ -1,103 +0,0 @@
-############################################################################
-# Makefile
-#
-# Copyright (C) 2011 Uros Platise. All rights reserved.
-# Author: Uros Platise <uros.platise@isotel.eu>
-# Gregory Nutt <spudmonkey@racsa.co.cr>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in
-# the documentation and/or other materials provided with the
-# distribution.
-# 3. Neither the name NuttX nor the names of its contributors may be
-# used to endorse or promote products derived from this software
-# without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
-# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
-# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
-# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
-# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
-# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
-# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-# POSSIBILITY OF SUCH DAMAGE.
-#
-############################################################################
-
-# TODO, this makefile should run make under the app dirs, instead of
-# sourcing the Make.defs!
-
--include $(TOPDIR)/Make.defs
-include ../Make.defs
-
-ifeq ($(WINTOOL),y)
-INCDIROPT = -w
-endif
-
-# Hello Application
-# TODO: appname can be automatically extracted from the directory name
-
-APPNAME = ramtron
-PRIORITY = SCHED_PRIORITY_DEFAULT
-STACKSIZE = 1024
-
-ASRCS =
-CSRCS = ramtron.c
-
-AOBJS = $(ASRCS:.S=$(OBJEXT))
-COBJS = $(CSRCS:.c=$(OBJEXT))
-
-SRCS = $(ASRCS) $(CSRCS)
-OBJS = $(AOBJS) $(COBJS)
-
-BIN = ../libapps$(LIBEXT)
-
-ROOTDEPPATH = --dep-path .
-
-# Common build
-
-VPATH =
-
-all: .built
-
-$(AOBJS): %$(OBJEXT): %.S
- $(call ASSEMBLE, $<, $@)
-
-$(COBJS): %$(OBJEXT): %.c
- $(call COMPILE, $<, $@)
-
-$(BIN): $(OBJS)
- @( for obj in $(OBJS) ; do \
- $(call ARCHIVE, $@, $${obj}); \
- done ; )
- @touch .built
-
-.built: $(BIN)
-
-.depend: Makefile $(SRCS)
- @$(MKDEP) $(ROOTDEPPATH) \
- $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
- $(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)
- @touch $@
-
-# Register application
-depend: .depend
-
-clean:
- @rm -f $(BIN) *.o *~ .*.swp .built
- $(call CLEAN)
-
-distclean: clean
- @rm -f Make.dep .depend
-
--include Make.dep
diff --git a/apps/ramtron/README.txt b/apps/ramtron/README.txt
deleted file mode 100644
index 152774b66..000000000
--- a/apps/ramtron/README.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-
-This application provides RAMTRON tool/lib to start, stop or to perform
-RAMTRON custom operations.
-
- Source: NuttX
- Author: Uros Platise
- Date: 18. March 2011
diff --git a/apps/ramtron/ramtron.c b/apps/ramtron/ramtron.c
deleted file mode 100644
index 323a42247..000000000
--- a/apps/ramtron/ramtron.c
+++ /dev/null
@@ -1,97 +0,0 @@
-/****************************************************************************
- * ramtron/ramtron.c
- *
- * Copyright (C) 2011 Uros Platise. All rights reserved.
- * Copyright (C) 2009 Gregory Nutt. All rights reserved.
- *
- * Authors: Uros Platise <uros.platise@isotel.eu>
- * Gregory Nutt <spudmonkey@racsa.co.cr>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * 3. Neither the name NuttX nor the names of its contributors may be
- * used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
- * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- *
- ****************************************************************************/
-
-#include <nuttx/config.h>
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <debug.h>
-#include <errno.h>
-
-#include <nuttx/spi.h>
-#include <nuttx/mtd.h>
-
-
-int ramtron_start(int spino)
-{
- FAR struct spi_dev_s *spi;
- FAR struct mtd_dev_s *mtd;
- int retval;
-
- /* Get the SPI port */
-
- spi = up_spiinitialize(spino);
- if (!spi)
- {
- printf("RAMTRON: Failed to initialize SPI%d\n", spino);
- return -ENODEV;
- }
- printf("RAMTRON: Initialized SPI%d\n", spino);
-
- mtd = (struct mtd_dev_s *)ramtron_initialize(spi);
- if (!mtd)
- {
- printf("RAMTRON: Device not found\n");
- return -ENODEV;
- }
- printf("RAMTRON: FM25V10 of size 128 kB\n");
- //printf("RAMTRON: %s of size %d B\n", ramtron_getpart(mtd), ramtron_getsize(mtd) );
-
- retval = ftl_initialize(0, NULL, mtd);
- printf("RAMTRON: FTL Initialized (returns with %d)\n", retval);
-
- return OK;
-}
-
-
-int ramtron_main(int argc, char *argv[])
-{
- int spino;
-
- if (argc == 3) {
- spino = atoi(argv[2]);
-
- if (!strcmp(argv[1], "start")) {
- return ramtron_start(spino);
- }
- }
-
- // todo: write protect
- printf("%s: <start> <spino>\n", argv[0]);
- return -1;
-}