diff options
author | Sunil Shetye | 2019-05-06 18:14:25 +0530 |
---|---|---|
committer | Sunil Shetye | 2019-05-29 11:07:52 +0530 |
commit | 5a73e6bec4a12db7afae9de300e39256f754d8d3 (patch) | |
tree | 8b9c8bf234d9024976fea0af05436a34834615eb /macros | |
parent | 595d1bae76a45ebb7f2bb0b4f805c972377c7e1d (diff) | |
download | scilab2c-5a73e6bec4a12db7afae9de300e39256f754d8d3.tar.gz scilab2c-5a73e6bec4a12db7afae9de300e39256f754d8d3.tar.bz2 scilab2c-5a73e6bec4a12db7afae9de300e39256f754d8d3.zip |
cleanup
fix permissions
ignore make output files
Diffstat (limited to 'macros')
155 files changed, 0 insertions, 1001 deletions
diff --git a/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp b/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp deleted file mode 100644 index 65184df1..00000000 --- a/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp +++ /dev/null @@ -1,230 +0,0 @@ -
-# --- C COMPILER ---
-CC = gcc
-CFLAGS = -Wall -pedantic -O3 -I $(HSRCDIR)
-# ---------------------------
-# --- END USER PARAMETERS ---
-# ---------------------------
-
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# DON'T TOUCH ANYTHING BELOW THIS LINE
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-
-ELEMENTARY_FUNCTIONS_DIR = $(CSRCDIR)/src/elementaryFunctions
-CFLAGS_ELEMENTARY_FUNCTIONS = -I $(ELEMENTARY_FUNCTIONS_DIR)/includes -I $(ELEMENTARY_FUNCTIONS_DIR)/interfaces
-
-
-EXEFILE = $(SCI2CDIR)/$(EXEFILENAME)
-
-objects = \
- $(OBJDIR)/doubleComplex.o \
- $(OBJDIR)/floatComplex.o \
- $(OBJDIR)/RealToComplex.o \
- $(OBJDIR)/conj.o \
- $(OBJDIR)/disp.o \
- $(OBJDIR)/ones.o \
- $(OBJDIR)/zeros.o \
- $(OBJDIR)/OpApex.o \
- $(OBJDIR)/OpColon.o \
- $(OBJDIR)/OpDotStar.o \
- $(OBJDIR)/OpDotHat.o \
- $(OBJDIR)/OpDotSlash.o \
- $(OBJDIR)/OpEqual.o \
- $(OBJDIR)/OpPlus.o \
- $(OBJDIR)/OpMinus.o \
- $(OBJDIR)/OpStar.o \
- $(OBJDIR)/OpIns.o \
- $(OBJDIR)/OpExt.o \
- $(OBJDIR)/OpRc.o \
- $(OBJDIR)/OpCc.o \
- $(OBJDIR)/cos.o \
- $(OBJDIR)/cosh.o \
- $(OBJDIR)/sin.o \
- $(OBJDIR)/sinh.o \
- $(OBJDIR)/FileManagement.o \
- $(OBJDIR)/OpLogLt.o \
- $(OBJDIR)/OpLogGt.o \
- $(OBJDIR)/OpLogGe.o \
- $(OBJDIR)/OpLogLe.o \
- $(OBJDIR)/OpLogEq.o \
- $(OBJDIR)/Find.o \
- $(OBJDIR)/ConvertPrecision.o \
- $(OBJDIR)/SCI2Cfft.o \
- $(OBJDIR)/SCI2Cconvol.o \
- $(OBJDIR)/ssqrts.o \
- $(OBJDIR)/dsqrts.o \
- $(OBJDIR)/csqrts.o \
- $(OBJDIR)/zsqrts.o \
- $(OBJDIR)/ssqrta.o \
- $(OBJDIR)/dsqrta.o \
- $(OBJDIR)/csqrta.o \
- $(OBJDIR)/zsqrta.o
-
-# ---------------
-# --- TARGETS ---
-# ---------------
-compileexecute: $(objects)
- @echo " "
- @echo "============================"
- @echo "Generation of the executable"
- @echo "============================"
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) $(objects) $(SCI2CDIR)/*.c -o $(EXEFILE)
- @echo " "
- @echo "=============="
- @echo "Executing code"
- @echo "=============="
- $(EXEFILE)
-
-clean:
- @echo " "
- @echo "============================="
- @echo "Removing only exe + obj files"
- @echo "============================="
- rm -rf $(EXEFILE)
- rm -rf $(objects)
- @echo " "
-
-cleanexe:
- @echo " "
- @echo "=========================="
- @echo "Removing only the exe file"
- @echo "=========================="
- rm -rf $(EXEFILE)
- @echo " "
-
-$(OBJDIR)/doubleComplex.o: $(CSRCDIR)/doubleComplex.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/doubleComplex.c -o $(OBJDIR)/doubleComplex.o
-
-$(OBJDIR)/floatComplex.o: $(CSRCDIR)/floatComplex.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/floatComplex.c -o $(OBJDIR)/floatComplex.o
-
-$(OBJDIR)/RealToComplex.o: $(CSRCDIR)/RealToComplex.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/RealToComplex.c -o $(OBJDIR)/RealToComplex.o
-
-$(OBJDIR)/conj.o: $(CSRCDIR)/conj.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/conj.c -o $(OBJDIR)/conj.o
-
-$(OBJDIR)/disp.o: $(CSRCDIR)/disp.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/disp.c -o $(OBJDIR)/disp.o
-
-$(OBJDIR)/zeros.o: $(CSRCDIR)/zeros.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/zeros.c -o $(OBJDIR)/zeros.o
-
-$(OBJDIR)/ones.o: $(CSRCDIR)/ones.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/ones.c -o $(OBJDIR)/ones.o
-
-$(OBJDIR)/OpApex.o: $(CSRCDIR)/OpApex.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpApex.c -o $(OBJDIR)/OpApex.o
-
-$(OBJDIR)/OpColon.o: $(CSRCDIR)/OpColon.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpColon.c -o $(OBJDIR)/OpColon.o
-
-$(OBJDIR)/OpDotStar.o: $(CSRCDIR)/OpDotStar.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpDotStar.c -o $(OBJDIR)/OpDotStar.o
-
-$(OBJDIR)/OpDotHat.o: $(CSRCDIR)/OpDotHat.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpDotHat.c -o $(OBJDIR)/OpDotHat.o
-
-$(OBJDIR)/OpDotSlash.o: $(CSRCDIR)/OpDotSlash.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpDotSlash.c -o $(OBJDIR)/OpDotSlash.o
-
-$(OBJDIR)/OpEqual.o: $(CSRCDIR)/OpEqual.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpEqual.c -o $(OBJDIR)/OpEqual.o
-
-$(OBJDIR)/OpPlus.o: $(CSRCDIR)/OpPlus.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpPlus.c -o $(OBJDIR)/OpPlus.o
-
-$(OBJDIR)/OpMinus.o: $(CSRCDIR)/OpMinus.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpMinus.c -o $(OBJDIR)/OpMinus.o
-
-$(OBJDIR)/OpStar.o: $(CSRCDIR)/OpStar.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpStar.c -o $(OBJDIR)/OpStar.o
-
-$(OBJDIR)/OpIns.o: $(CSRCDIR)/OpIns.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpIns.c -o $(OBJDIR)/OpIns.o
-
-$(OBJDIR)/OpExt.o: $(CSRCDIR)/OpExt.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpExt.c -o $(OBJDIR)/OpExt.o
-
-$(OBJDIR)/OpRc.o: $(CSRCDIR)/OpRc.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpRc.c -o $(OBJDIR)/OpRc.o
-
-$(OBJDIR)/OpCc.o: $(CSRCDIR)/OpCc.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpCc.c -o $(OBJDIR)/OpCc.o
-
-$(OBJDIR)/cos.o: $(CSRCDIR)/cos.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/cos.c -o $(OBJDIR)/cos.o
-
-$(OBJDIR)/cosh.o: $(CSRCDIR)/cosh.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/cosh.c -o $(OBJDIR)/cosh.o
-
-$(OBJDIR)/sin.o: $(CSRCDIR)/sin.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/sin.c -o $(OBJDIR)/sin.o
-
-$(OBJDIR)/sinh.o: $(CSRCDIR)/sinh.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/sinh.c -o $(OBJDIR)/sinh.o
-
-$(OBJDIR)/FileManagement.o: $(CSRCDIR)/FileManagement.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/FileManagement.c -o $(OBJDIR)/FileManagement.o
-
-$(OBJDIR)/OpLogLt.o: $(CSRCDIR)/OpLogLt.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogLt.c -o $(OBJDIR)/OpLogLt.o
-
-$(OBJDIR)/OpLogGt.o: $(CSRCDIR)/OpLogGt.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogGt.c -o $(OBJDIR)/OpLogGt.o
-
-$(OBJDIR)/OpLogLe.o: $(CSRCDIR)/OpLogLe.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogLe.c -o $(OBJDIR)/OpLogLe.o
-
-$(OBJDIR)/OpLogGe.o: $(CSRCDIR)/OpLogGe.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogGe.c -o $(OBJDIR)/OpLogGe.o
-
-$(OBJDIR)/OpLogEq.o: $(CSRCDIR)/OpLogEq.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogEq.c -o $(OBJDIR)/OpLogEq.o
-
-$(OBJDIR)/Find.o: $(CSRCDIR)/Find.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/Find.c -o $(OBJDIR)/Find.o
-
-$(OBJDIR)/ConvertPrecision.o: $(CSRCDIR)/ConvertPrecision.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/ConvertPrecision.c -o $(OBJDIR)/ConvertPrecision.o
-
-$(OBJDIR)/SCI2Cfft.o: $(CSRCDIR)/SCI2Cfft.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/SCI2Cfft.c -o $(OBJDIR)/SCI2Cfft.o
-
-$(OBJDIR)/SCI2Cconvol.o: $(CSRCDIR)/SCI2Cconvol.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/SCI2Cconvol.c -o $(OBJDIR)/SCI2Cconvol.o
-
-$(OBJDIR)/sqrt.o: $(CSRCELEMFUNDIR)/sqrt/*sqrt*.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCELEMFUNDIR)/sqrt/*sqrt*.c -o $(OBJDIR)/sqrt.o
-
-$(OBJDIR)/ssqrts.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/ssqrts.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/ssqrts.c -o $(OBJDIR)/ssqrts.o
-
-$(OBJDIR)/dsqrts.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/dsqrts.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/dsqrts.c -o $(OBJDIR)/dsqrts.o
-
-$(OBJDIR)/csqrts.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/csqrts.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/csqrts.c -o $(OBJDIR)/csqrts.o
-
-$(OBJDIR)/zsqrts.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/zsqrts.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/zsqrts.c -o $(OBJDIR)/zsqrts.o
-
-$(OBJDIR)/ssqrta.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/ssqrta.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/ssqrta.c -o $(OBJDIR)/ssqrta.o
-
-$(OBJDIR)/dsqrta.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/dsqrta.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/dsqrta.c -o $(OBJDIR)/dsqrta.o
-
-$(OBJDIR)/csqrta.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/csqrta.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/csqrta.c -o $(OBJDIR)/csqrta.o
-
-$(OBJDIR)/zsqrta.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/zsqrta.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/zsqrta.c -o $(OBJDIR)/zsqrta.o
diff --git a/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp1 b/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp1 deleted file mode 100644 index 65184df1..00000000 --- a/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp1 +++ /dev/null @@ -1,230 +0,0 @@ -
-# --- C COMPILER ---
-CC = gcc
-CFLAGS = -Wall -pedantic -O3 -I $(HSRCDIR)
-# ---------------------------
-# --- END USER PARAMETERS ---
-# ---------------------------
-
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# DON'T TOUCH ANYTHING BELOW THIS LINE
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-
-ELEMENTARY_FUNCTIONS_DIR = $(CSRCDIR)/src/elementaryFunctions
-CFLAGS_ELEMENTARY_FUNCTIONS = -I $(ELEMENTARY_FUNCTIONS_DIR)/includes -I $(ELEMENTARY_FUNCTIONS_DIR)/interfaces
-
-
-EXEFILE = $(SCI2CDIR)/$(EXEFILENAME)
-
-objects = \
- $(OBJDIR)/doubleComplex.o \
- $(OBJDIR)/floatComplex.o \
- $(OBJDIR)/RealToComplex.o \
- $(OBJDIR)/conj.o \
- $(OBJDIR)/disp.o \
- $(OBJDIR)/ones.o \
- $(OBJDIR)/zeros.o \
- $(OBJDIR)/OpApex.o \
- $(OBJDIR)/OpColon.o \
- $(OBJDIR)/OpDotStar.o \
- $(OBJDIR)/OpDotHat.o \
- $(OBJDIR)/OpDotSlash.o \
- $(OBJDIR)/OpEqual.o \
- $(OBJDIR)/OpPlus.o \
- $(OBJDIR)/OpMinus.o \
- $(OBJDIR)/OpStar.o \
- $(OBJDIR)/OpIns.o \
- $(OBJDIR)/OpExt.o \
- $(OBJDIR)/OpRc.o \
- $(OBJDIR)/OpCc.o \
- $(OBJDIR)/cos.o \
- $(OBJDIR)/cosh.o \
- $(OBJDIR)/sin.o \
- $(OBJDIR)/sinh.o \
- $(OBJDIR)/FileManagement.o \
- $(OBJDIR)/OpLogLt.o \
- $(OBJDIR)/OpLogGt.o \
- $(OBJDIR)/OpLogGe.o \
- $(OBJDIR)/OpLogLe.o \
- $(OBJDIR)/OpLogEq.o \
- $(OBJDIR)/Find.o \
- $(OBJDIR)/ConvertPrecision.o \
- $(OBJDIR)/SCI2Cfft.o \
- $(OBJDIR)/SCI2Cconvol.o \
- $(OBJDIR)/ssqrts.o \
- $(OBJDIR)/dsqrts.o \
- $(OBJDIR)/csqrts.o \
- $(OBJDIR)/zsqrts.o \
- $(OBJDIR)/ssqrta.o \
- $(OBJDIR)/dsqrta.o \
- $(OBJDIR)/csqrta.o \
- $(OBJDIR)/zsqrta.o
-
-# ---------------
-# --- TARGETS ---
-# ---------------
-compileexecute: $(objects)
- @echo " "
- @echo "============================"
- @echo "Generation of the executable"
- @echo "============================"
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) $(objects) $(SCI2CDIR)/*.c -o $(EXEFILE)
- @echo " "
- @echo "=============="
- @echo "Executing code"
- @echo "=============="
- $(EXEFILE)
-
-clean:
- @echo " "
- @echo "============================="
- @echo "Removing only exe + obj files"
- @echo "============================="
- rm -rf $(EXEFILE)
- rm -rf $(objects)
- @echo " "
-
-cleanexe:
- @echo " "
- @echo "=========================="
- @echo "Removing only the exe file"
- @echo "=========================="
- rm -rf $(EXEFILE)
- @echo " "
-
-$(OBJDIR)/doubleComplex.o: $(CSRCDIR)/doubleComplex.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/doubleComplex.c -o $(OBJDIR)/doubleComplex.o
-
-$(OBJDIR)/floatComplex.o: $(CSRCDIR)/floatComplex.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/floatComplex.c -o $(OBJDIR)/floatComplex.o
-
-$(OBJDIR)/RealToComplex.o: $(CSRCDIR)/RealToComplex.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/RealToComplex.c -o $(OBJDIR)/RealToComplex.o
-
-$(OBJDIR)/conj.o: $(CSRCDIR)/conj.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/conj.c -o $(OBJDIR)/conj.o
-
-$(OBJDIR)/disp.o: $(CSRCDIR)/disp.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/disp.c -o $(OBJDIR)/disp.o
-
-$(OBJDIR)/zeros.o: $(CSRCDIR)/zeros.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/zeros.c -o $(OBJDIR)/zeros.o
-
-$(OBJDIR)/ones.o: $(CSRCDIR)/ones.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/ones.c -o $(OBJDIR)/ones.o
-
-$(OBJDIR)/OpApex.o: $(CSRCDIR)/OpApex.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpApex.c -o $(OBJDIR)/OpApex.o
-
-$(OBJDIR)/OpColon.o: $(CSRCDIR)/OpColon.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpColon.c -o $(OBJDIR)/OpColon.o
-
-$(OBJDIR)/OpDotStar.o: $(CSRCDIR)/OpDotStar.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpDotStar.c -o $(OBJDIR)/OpDotStar.o
-
-$(OBJDIR)/OpDotHat.o: $(CSRCDIR)/OpDotHat.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpDotHat.c -o $(OBJDIR)/OpDotHat.o
-
-$(OBJDIR)/OpDotSlash.o: $(CSRCDIR)/OpDotSlash.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpDotSlash.c -o $(OBJDIR)/OpDotSlash.o
-
-$(OBJDIR)/OpEqual.o: $(CSRCDIR)/OpEqual.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpEqual.c -o $(OBJDIR)/OpEqual.o
-
-$(OBJDIR)/OpPlus.o: $(CSRCDIR)/OpPlus.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpPlus.c -o $(OBJDIR)/OpPlus.o
-
-$(OBJDIR)/OpMinus.o: $(CSRCDIR)/OpMinus.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpMinus.c -o $(OBJDIR)/OpMinus.o
-
-$(OBJDIR)/OpStar.o: $(CSRCDIR)/OpStar.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpStar.c -o $(OBJDIR)/OpStar.o
-
-$(OBJDIR)/OpIns.o: $(CSRCDIR)/OpIns.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpIns.c -o $(OBJDIR)/OpIns.o
-
-$(OBJDIR)/OpExt.o: $(CSRCDIR)/OpExt.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpExt.c -o $(OBJDIR)/OpExt.o
-
-$(OBJDIR)/OpRc.o: $(CSRCDIR)/OpRc.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpRc.c -o $(OBJDIR)/OpRc.o
-
-$(OBJDIR)/OpCc.o: $(CSRCDIR)/OpCc.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpCc.c -o $(OBJDIR)/OpCc.o
-
-$(OBJDIR)/cos.o: $(CSRCDIR)/cos.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/cos.c -o $(OBJDIR)/cos.o
-
-$(OBJDIR)/cosh.o: $(CSRCDIR)/cosh.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/cosh.c -o $(OBJDIR)/cosh.o
-
-$(OBJDIR)/sin.o: $(CSRCDIR)/sin.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/sin.c -o $(OBJDIR)/sin.o
-
-$(OBJDIR)/sinh.o: $(CSRCDIR)/sinh.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/sinh.c -o $(OBJDIR)/sinh.o
-
-$(OBJDIR)/FileManagement.o: $(CSRCDIR)/FileManagement.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/FileManagement.c -o $(OBJDIR)/FileManagement.o
-
-$(OBJDIR)/OpLogLt.o: $(CSRCDIR)/OpLogLt.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogLt.c -o $(OBJDIR)/OpLogLt.o
-
-$(OBJDIR)/OpLogGt.o: $(CSRCDIR)/OpLogGt.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogGt.c -o $(OBJDIR)/OpLogGt.o
-
-$(OBJDIR)/OpLogLe.o: $(CSRCDIR)/OpLogLe.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogLe.c -o $(OBJDIR)/OpLogLe.o
-
-$(OBJDIR)/OpLogGe.o: $(CSRCDIR)/OpLogGe.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogGe.c -o $(OBJDIR)/OpLogGe.o
-
-$(OBJDIR)/OpLogEq.o: $(CSRCDIR)/OpLogEq.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/OpLogEq.c -o $(OBJDIR)/OpLogEq.o
-
-$(OBJDIR)/Find.o: $(CSRCDIR)/Find.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/Find.c -o $(OBJDIR)/Find.o
-
-$(OBJDIR)/ConvertPrecision.o: $(CSRCDIR)/ConvertPrecision.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/ConvertPrecision.c -o $(OBJDIR)/ConvertPrecision.o
-
-$(OBJDIR)/SCI2Cfft.o: $(CSRCDIR)/SCI2Cfft.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/SCI2Cfft.c -o $(OBJDIR)/SCI2Cfft.o
-
-$(OBJDIR)/SCI2Cconvol.o: $(CSRCDIR)/SCI2Cconvol.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCDIR)/SCI2Cconvol.c -o $(OBJDIR)/SCI2Cconvol.o
-
-$(OBJDIR)/sqrt.o: $(CSRCELEMFUNDIR)/sqrt/*sqrt*.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) -c $(CSRCELEMFUNDIR)/sqrt/*sqrt*.c -o $(OBJDIR)/sqrt.o
-
-$(OBJDIR)/ssqrts.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/ssqrts.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/ssqrts.c -o $(OBJDIR)/ssqrts.o
-
-$(OBJDIR)/dsqrts.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/dsqrts.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/dsqrts.c -o $(OBJDIR)/dsqrts.o
-
-$(OBJDIR)/csqrts.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/csqrts.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/csqrts.c -o $(OBJDIR)/csqrts.o
-
-$(OBJDIR)/zsqrts.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/zsqrts.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/zsqrts.c -o $(OBJDIR)/zsqrts.o
-
-$(OBJDIR)/ssqrta.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/ssqrta.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/ssqrta.c -o $(OBJDIR)/ssqrta.o
-
-$(OBJDIR)/dsqrta.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/dsqrta.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/dsqrta.c -o $(OBJDIR)/dsqrta.o
-
-$(OBJDIR)/csqrta.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/csqrta.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/csqrta.c -o $(OBJDIR)/csqrta.o
-
-$(OBJDIR)/zsqrta.o: $(CSRCDIR)/src/elementaryFunctions/sqrt/zsqrta.c $(HSRCDIR)/*.h
- $(CC) $(CFLAGS) $(CFLAGS_ELEMENTARY_FUNCTIONS) -c $(ELEMENTARY_FUNCTIONS_DIR)/sqrt/zsqrta.c -o $(OBJDIR)/zsqrta.o
diff --git a/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp2 b/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp2 deleted file mode 100644 index c6ba2a9c..00000000 --- a/macros/CCodeGeneration/SCI2CMakefileTemplate.bkp2 +++ /dev/null @@ -1,126 +0,0 @@ -
-# --- C COMPILER ---
-CC = gcc
-CFLAGS = -Wall -pedantic -O3 -I $(HSRCDIR) -I $(ISRCDIR)
-# ---------------------------
-# --- END USER PARAMETERS ---
-# ---------------------------
-
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# DON'T TOUCH ANYTHING BELOW THIS LINE
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-# ------------------------------------
-
-EXEFILE = $(SCI2CDIR)/$(EXEFILENAME)
-
-SWSRCS = \
- $(CSRCDIR)/doubleComplex.c \
- $(CSRCDIR)/floatComplex.c \
- $(CSRCDIR)/RealToComplex.c \
- $(CSRCDIR)/conj.c \
- $(CSRCDIR)/disp.c \
- $(CSRCDIR)/ones.c \
- $(CSRCDIR)/zeros.c \
- $(CSRCDIR)/OpApex.c \
- $(CSRCDIR)/OpColon.c \
- $(CSRCDIR)/OpDotStar.c \
- $(CSRCDIR)/OpDotHat.c \
- $(CSRCDIR)/OpDotSlash.c \
- $(CSRCDIR)/OpEqual.c \
- $(CSRCDIR)/OpPlus.c \
- $(CSRCDIR)/OpMinus.c \
- $(CSRCDIR)/OpStar.c \
- $(CSRCDIR)/OpIns.c \
- $(CSRCDIR)/OpExt.c \
- $(CSRCDIR)/OpRc.c \
- $(CSRCDIR)/OpCc.c \
- $(CSRCDIR)/cos.c \
- $(CSRCDIR)/cosh.c \
- $(CSRCDIR)/sin.c \
- $(CSRCDIR)/sinh.c \
- $(CSRCDIR)/FileManagement.c \
- $(CSRCDIR)/OpLogLt.c \
- $(CSRCDIR)/OpLogGt.c \
- $(CSRCDIR)/OpLogGe.c \
- $(CSRCDIR)/OpLogLe.c \
- $(CSRCDIR)/OpLogEq.c \
- $(CSRCDIR)/OpLogOr.c \
- $(CSRCDIR)/OpLogAnd.c \
- $(CSRCDIR)/Find.c \
- $(CSRCDIR)/ConvertPrecision.c \
- $(CSRCDIR)/SCI2Cfft.c \
- $(CSRCDIR)/SCI2Cconvol.c \
- $(CSRCDIR)/ssqrts.c \
- $(CSRCDIR)/dsqrts.c \
- $(CSRCDIR)/csqrts.c \
- $(CSRCDIR)/zsqrts.c \
- $(CSRCDIR)/ssqrta.c \
- $(CSRCDIR)/dsqrta.c \
- $(CSRCDIR)/csqrta.c \
- $(CSRCDIR)/zsqrta.c \
- $(CSRCDIR)/sabss.c \ - $(CSRCDIR)/dabss.c \ - $(CSRCDIR)/cabss.c \ - $(CSRCDIR)/zabss.c \ - $(CSRCDIR)/sabsa.c \ - $(CSRCDIR)/dabsa.c \ - $(CSRCDIR)/cabsa.c \ - $(CSRCDIR)/zabsa.c \ - $(CSRCDIR)/sexps.c \ - $(CSRCDIR)/dexps.c \ - $(CSRCDIR)/cexps.c \ - $(CSRCDIR)/zexps.c \ - $(CSRCDIR)/sexpa.c \ - $(CSRCDIR)/dexpa.c \ - $(CSRCDIR)/cexpa.c \ - $(CSRCDIR)/zexpa.c -
-SWOBJS = $(SWSRCS:.c=.o) -
-# ---------------
-# --- TARGETS ---
-# ---------------
-compileexecute: $(SWOBJS)
- @echo " "
- @echo "============================"
- @echo "Generation of the executable"
- @echo "============================"
- $(CC) $(CFLAGS) $(SWOBJS) $(SCI2CDIR)/*.c -o $(EXEFILE)
- @echo " "
- @echo "=============="
- @echo "Executing code"
- @echo "=============="
- $(EXEFILE)
-
-clean:
- @echo " "
- @echo "============================="
- @echo "Removing only exe + obj files"
- @echo "============================="
- rm -rf $(EXEFILE)
- rm -rf $(SWOBJS)
- @echo " "
-
-cleanexe:
- @echo " "
- @echo "=========================="
- @echo "Removing only the exe file"
- @echo "=========================="
- rm -rf $(EXEFILE)
- @echo " "
-
-# how to compile object code .o from C source files .c (general rule) -# space between -o and filename for SUN make -.c.o: - $(CC) $(CFLAGS) -c -o $(@) $<
-
-# Make object code from source -swobjs: $(SWOBJS) -
diff --git a/macros/CCodeGeneration/names b/macros/CCodeGeneration/names deleted file mode 100644 index 56caa81d..00000000 --- a/macros/CCodeGeneration/names +++ /dev/null @@ -1,25 +0,0 @@ -C_FinalizeCode -C_ForExpression -C_Funcall -C_GenDeclarations -C_GenDeclarations_Dup -C_GenerateFunName -C_GenerateLaunchScript -C_GenerateMakefile -C_GenerateMakefile_msvc -C_GenerateMkfle_arduino -C_GenerateSCI2CHeader -C_IfElseBlocks -C_IfExpression -C_IndentBlanks -C_InitHeader -C_MemAllocOutTempVars -C_SCI2CHeader -C_Type -C_WhileExpression -GenCFunDatFiles -GetClsFileName -GetSymbolDimension -GetWhileCondVariable -JoinDeclarAndCcode -Sci2AnnotationFile diff --git a/macros/ErrorMessages/names b/macros/ErrorMessages/names deleted file mode 100644 index f55e8f8b..00000000 --- a/macros/ErrorMessages/names +++ /dev/null @@ -1,3 +0,0 @@ -EM_NanSize -EM_UnknownStep -EM_ZeroSize diff --git a/macros/FunctionAnnotation/names b/macros/FunctionAnnotation/names deleted file mode 100644 index 423c825a..00000000 --- a/macros/FunctionAnnotation/names +++ /dev/null @@ -1,81 +0,0 @@ -FA_ADD -FA_DIV -FA_FSFIRLIN_SZ -FA_GetDefaultPrecision -FA_GetFunAnn -FA_GetOutArgInfo -FA_GetResizeApproach -FA_INSZ_RPI -FA_INT -FA_MAX -FA_MIN -FA_MUL -FA_REAL -FA_SCHUR_SZ -FA_SCHUR_TP -FA_SUB -FA_SZ_1 -FA_SZ_2 -FA_SZ_AMELL -FA_SZ_COLUMN_DIAG -FA_SZ_COL_DIAG_IN_EX -FA_SZ_DEC2BASE -FA_SZ_DEC2BIN -FA_SZ_DEC2HEX -FA_SZ_DEC2OCT -FA_SZ_DIFF -FA_SZ_FACTOR -FA_SZ_FROM_VAL -FA_SZ_LINSPACE_ROW -FA_SZ_LQE -FA_SZ_LQR -FA_SZ_MODSN -FA_SZ_OBSCNT -FA_SZ_OPAPEX -FA_SZ_OPBACKSLASH -FA_SZ_OPCC -FA_SZ_OPDOTAPEX -FA_SZ_OPDOTBACKSLASH -FA_SZ_OPDOTHAT -FA_SZ_OPDOTSLASH -FA_SZ_OPDOTSTAR -FA_SZ_OPHAT -FA_SZ_OPLOGAND -FA_SZ_OPLOGEQ -FA_SZ_OPLOGGE -FA_SZ_OPLOGGT -FA_SZ_OPLOGLE -FA_SZ_OPLOGLT -FA_SZ_OPLOGNE -FA_SZ_OPLOGNOT -FA_SZ_OPLOGOR -FA_SZ_OPMINUS -FA_SZ_OPPLUS -FA_SZ_OPPLUSA -FA_SZ_OPRC -FA_SZ_OPSLASH -FA_SZ_OPSTAR -FA_SZ_PRIMES -FA_SZ_ROW_COLUMN_CAT -FA_SZ_ROW_DIAG -FA_SZ_ROW_DIAG_INS_EXT -FA_SZ_SEL1 -FA_SZ_SEL2 -FA_SZ_U_SVA -FA_TP_ASCII -FA_TP_C -FA_TP_COMPLEX -FA_TP_CVIMAGE -FA_TP_D -FA_TP_I -FA_TP_INT16 -FA_TP_INT8 -FA_TP_MAX -FA_TP_MIN_REAL -FA_TP_MODSN -FA_TP_REAL -FA_TP_S -FA_TP_UINT16 -FA_TP_UINT8 -FA_TP_USER -FA_TP_Z diff --git a/macros/FunctionList/names b/macros/FunctionList/names deleted file mode 100644 index c40e30ca..00000000 --- a/macros/FunctionList/names +++ /dev/null @@ -1,6 +0,0 @@ -FL_ExistCFunction -FL_ExtractFuncList -FL_GetFunctionClass -FL_InOutArgs2CFunNames -FL_UpdateConverted -FL_UpdateToBeConv diff --git a/macros/GeneralFunctions/names b/macros/GeneralFunctions/names deleted file mode 100644 index eb8300a1..00000000 --- a/macros/GeneralFunctions/names +++ /dev/null @@ -1,28 +0,0 @@ -Array2String -ConvertPathMat2C -File2StringArray -FunName2SciFileName -IsNanSize -KeyStr2FileStrPos -PrintStepInfo -PrintStringInfo -ReadStringCard -SCI2CCreateDir -SCI2CFindFile -SCI2CNInArgCheck -SCI2COpenFileRead -SCI2COpenFileWrite -SCI2CTemplate -SCI2Ccopyfile -SCI2Cfileexist -SCI2Cflipud -SCI2Cmdelete -SCI2Cresize -SCI2Cstring -SCI2Cstrncmp -SCI2Cstrncmps1size -SizeInByte -dispina -filenamefprintf -float -squeezestrings diff --git a/macros/Hardware/AVR/names b/macros/Hardware/AVR/names deleted file mode 100644 index 8fcfdb75..00000000 --- a/macros/Hardware/AVR/names +++ /dev/null @@ -1,22 +0,0 @@ -AVRADCSetup -AVRDigitalIn -AVRDigitalOut -AVRDigitalPortSetup -AVRDigitalSetup -AVRGetTimerValue -AVRPWM0SetDuty -AVRPWM0Setup -AVRPWM1SetDuty -AVRPWM1Setup -AVRPWM2SetDuty -AVRPWM2Setup -AVRReadADC -AVRSleep -AVRTimerSetup -AVRUARTReceive -AVRUARTSetup -AVRUARTTransmit -GetAVRSupportFunctions -GetPeripheral -InsertPeripheralInList -IsAVRSupportFunction diff --git a/macros/Hardware/RasberryPi/Digital/RPI_digitalRead.sci b/macros/Hardware/RasberryPi/Digital/RPI_digitalRead.sci index f3f229f9..f3f229f9 100755..100644 --- a/macros/Hardware/RasberryPi/Digital/RPI_digitalRead.sci +++ b/macros/Hardware/RasberryPi/Digital/RPI_digitalRead.sci diff --git a/macros/Hardware/RasberryPi/Digital/RPI_digitalReadByte.sci b/macros/Hardware/RasberryPi/Digital/RPI_digitalReadByte.sci index 5cbccc21..5cbccc21 100755..100644 --- a/macros/Hardware/RasberryPi/Digital/RPI_digitalReadByte.sci +++ b/macros/Hardware/RasberryPi/Digital/RPI_digitalReadByte.sci diff --git a/macros/Hardware/RasberryPi/Digital/RPI_digitalWrite.sci b/macros/Hardware/RasberryPi/Digital/RPI_digitalWrite.sci index d4ac660b..d4ac660b 100755..100644 --- a/macros/Hardware/RasberryPi/Digital/RPI_digitalWrite.sci +++ b/macros/Hardware/RasberryPi/Digital/RPI_digitalWrite.sci diff --git a/macros/Hardware/RasberryPi/Digital/RPI_digitalWriteByte.sci b/macros/Hardware/RasberryPi/Digital/RPI_digitalWriteByte.sci index f7f9191c..f7f9191c 100755..100644 --- a/macros/Hardware/RasberryPi/Digital/RPI_digitalWriteByte.sci +++ b/macros/Hardware/RasberryPi/Digital/RPI_digitalWriteByte.sci diff --git a/macros/Hardware/RasberryPi/Digital/buildmacros.sce b/macros/Hardware/RasberryPi/Digital/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/Digital/buildmacros.sce +++ b/macros/Hardware/RasberryPi/Digital/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/Digital/names b/macros/Hardware/RasberryPi/Digital/names deleted file mode 100755 index 27fe63bc..00000000 --- a/macros/Hardware/RasberryPi/Digital/names +++ /dev/null @@ -1,4 +0,0 @@ -RPI_digitalRead -RPI_digitalReadByte -RPI_digitalWrite -RPI_digitalWriteByte diff --git a/macros/Hardware/RasberryPi/I2C/RPI_I2CRead.sci b/macros/Hardware/RasberryPi/I2C/RPI_I2CRead.sci index afd98500..afd98500 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_I2CRead.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_I2CRead.sci diff --git a/macros/Hardware/RasberryPi/I2C/RPI_I2CReadReg16.sci b/macros/Hardware/RasberryPi/I2C/RPI_I2CReadReg16.sci index f0ad9898..f0ad9898 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_I2CReadReg16.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_I2CReadReg16.sci diff --git a/macros/Hardware/RasberryPi/I2C/RPI_I2CReadReg8.sci b/macros/Hardware/RasberryPi/I2C/RPI_I2CReadReg8.sci index d2ab59fd..d2ab59fd 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_I2CReadReg8.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_I2CReadReg8.sci diff --git a/macros/Hardware/RasberryPi/I2C/RPI_I2CSetup.sci b/macros/Hardware/RasberryPi/I2C/RPI_I2CSetup.sci index 801c2e6d..801c2e6d 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_I2CSetup.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_I2CSetup.sci diff --git a/macros/Hardware/RasberryPi/I2C/RPI_I2CSetupInterface.sci b/macros/Hardware/RasberryPi/I2C/RPI_I2CSetupInterface.sci index fed4f059..fed4f059 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_I2CSetupInterface.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_I2CSetupInterface.sci diff --git a/macros/Hardware/RasberryPi/I2C/RPI_I2CWrite.sci b/macros/Hardware/RasberryPi/I2C/RPI_I2CWrite.sci index 854b3b26..854b3b26 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_I2CWrite.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_I2CWrite.sci diff --git a/macros/Hardware/RasberryPi/I2C/RPI_I2CWriteReg16.sci b/macros/Hardware/RasberryPi/I2C/RPI_I2CWriteReg16.sci index b2e8fb69..b2e8fb69 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_I2CWriteReg16.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_I2CWriteReg16.sci diff --git a/macros/Hardware/RasberryPi/I2C/RPI_I2CWriteReg8.sci b/macros/Hardware/RasberryPi/I2C/RPI_I2CWriteReg8.sci index 19c81570..19c81570 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_I2CWriteReg8.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_I2CWriteReg8.sci diff --git a/macros/Hardware/RasberryPi/I2C/RPI_i2cdetect.sci b/macros/Hardware/RasberryPi/I2C/RPI_i2cdetect.sci index a37bc4cb..a37bc4cb 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/RPI_i2cdetect.sci +++ b/macros/Hardware/RasberryPi/I2C/RPI_i2cdetect.sci diff --git a/macros/Hardware/RasberryPi/I2C/buildmacros.sce b/macros/Hardware/RasberryPi/I2C/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/I2C/buildmacros.sce +++ b/macros/Hardware/RasberryPi/I2C/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/I2C/names b/macros/Hardware/RasberryPi/I2C/names deleted file mode 100755 index 5a318865..00000000 --- a/macros/Hardware/RasberryPi/I2C/names +++ /dev/null @@ -1,9 +0,0 @@ -RPI_I2CRead -RPI_I2CReadReg16 -RPI_I2CReadReg8 -RPI_I2CSetup -RPI_I2CSetupInterface -RPI_I2CWrite -RPI_I2CWriteReg16 -RPI_I2CWriteReg8 -RPI_i2cdetect diff --git a/macros/Hardware/RasberryPi/Interrupt/RPI_waitForInterrupt.sci b/macros/Hardware/RasberryPi/Interrupt/RPI_waitForInterrupt.sci index bb180420..bb180420 100755..100644 --- a/macros/Hardware/RasberryPi/Interrupt/RPI_waitForInterrupt.sci +++ b/macros/Hardware/RasberryPi/Interrupt/RPI_waitForInterrupt.sci diff --git a/macros/Hardware/RasberryPi/Interrupt/buildmacros.sce b/macros/Hardware/RasberryPi/Interrupt/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/Interrupt/buildmacros.sce +++ b/macros/Hardware/RasberryPi/Interrupt/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/Interrupt/names b/macros/Hardware/RasberryPi/Interrupt/names deleted file mode 100755 index 248c3e24..00000000 --- a/macros/Hardware/RasberryPi/Interrupt/names +++ /dev/null @@ -1 +0,0 @@ -RPI_waitForInterrupt diff --git a/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci b/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci index 91ddb333..91ddb333 100755..100644 --- a/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci +++ b/macros/Hardware/RasberryPi/Misc/RPI_boardRev.sci diff --git a/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci b/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci index f2d0b177..f2d0b177 100755..100644 --- a/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci +++ b/macros/Hardware/RasberryPi/Misc/RPI_padDrive.sci diff --git a/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci b/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci index 0791c506..0791c506 100755..100644 --- a/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci +++ b/macros/Hardware/RasberryPi/Misc/RPI_sn3218Setup.sci diff --git a/macros/Hardware/RasberryPi/Misc/buildmacros.sce b/macros/Hardware/RasberryPi/Misc/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/Misc/buildmacros.sce +++ b/macros/Hardware/RasberryPi/Misc/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/Misc/names b/macros/Hardware/RasberryPi/Misc/names deleted file mode 100755 index 35a4a425..00000000 --- a/macros/Hardware/RasberryPi/Misc/names +++ /dev/null @@ -1,3 +0,0 @@ -RPI_boardRev -RPI_padDrive -RPI_sn3218Setup diff --git a/macros/Hardware/RasberryPi/RPI_adress.sci b/macros/Hardware/RasberryPi/RPI_adress.sci index 4c9aa7f0..4c9aa7f0 100755..100644 --- a/macros/Hardware/RasberryPi/RPI_adress.sci +++ b/macros/Hardware/RasberryPi/RPI_adress.sci diff --git a/macros/Hardware/RasberryPi/SPI/RPI_SPIDataRW.sci b/macros/Hardware/RasberryPi/SPI/RPI_SPIDataRW.sci index 186e68ff..186e68ff 100755..100644 --- a/macros/Hardware/RasberryPi/SPI/RPI_SPIDataRW.sci +++ b/macros/Hardware/RasberryPi/SPI/RPI_SPIDataRW.sci diff --git a/macros/Hardware/RasberryPi/SPI/RPI_SPIGetFd.sci b/macros/Hardware/RasberryPi/SPI/RPI_SPIGetFd.sci index 43cfc098..43cfc098 100755..100644 --- a/macros/Hardware/RasberryPi/SPI/RPI_SPIGetFd.sci +++ b/macros/Hardware/RasberryPi/SPI/RPI_SPIGetFd.sci diff --git a/macros/Hardware/RasberryPi/SPI/RPI_SPISetup.sci b/macros/Hardware/RasberryPi/SPI/RPI_SPISetup.sci index 5654cf9b..5654cf9b 100755..100644 --- a/macros/Hardware/RasberryPi/SPI/RPI_SPISetup.sci +++ b/macros/Hardware/RasberryPi/SPI/RPI_SPISetup.sci diff --git a/macros/Hardware/RasberryPi/SPI/RPI_SPISetupMode.sci b/macros/Hardware/RasberryPi/SPI/RPI_SPISetupMode.sci index fec785ab..fec785ab 100755..100644 --- a/macros/Hardware/RasberryPi/SPI/RPI_SPISetupMode.sci +++ b/macros/Hardware/RasberryPi/SPI/RPI_SPISetupMode.sci diff --git a/macros/Hardware/RasberryPi/SPI/buildmacros.sce b/macros/Hardware/RasberryPi/SPI/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/SPI/buildmacros.sce +++ b/macros/Hardware/RasberryPi/SPI/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/SPI/names b/macros/Hardware/RasberryPi/SPI/names deleted file mode 100755 index 6f458a7e..00000000 --- a/macros/Hardware/RasberryPi/SPI/names +++ /dev/null @@ -1,4 +0,0 @@ -RPI_SPIDataRW -RPI_SPIGetFd -RPI_SPISetup -RPI_SPISetupMode diff --git a/macros/Hardware/RasberryPi/Serial/RPI_serialClose.sci b/macros/Hardware/RasberryPi/Serial/RPI_serialClose.sci index 6f54b655..6f54b655 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/RPI_serialClose.sci +++ b/macros/Hardware/RasberryPi/Serial/RPI_serialClose.sci diff --git a/macros/Hardware/RasberryPi/Serial/RPI_serialDataAvail.sci b/macros/Hardware/RasberryPi/Serial/RPI_serialDataAvail.sci index 9421e5b4..9421e5b4 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/RPI_serialDataAvail.sci +++ b/macros/Hardware/RasberryPi/Serial/RPI_serialDataAvail.sci diff --git a/macros/Hardware/RasberryPi/Serial/RPI_serialFlush.sci b/macros/Hardware/RasberryPi/Serial/RPI_serialFlush.sci index 845f70b3..845f70b3 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/RPI_serialFlush.sci +++ b/macros/Hardware/RasberryPi/Serial/RPI_serialFlush.sci diff --git a/macros/Hardware/RasberryPi/Serial/RPI_serialGetchar.sci b/macros/Hardware/RasberryPi/Serial/RPI_serialGetchar.sci index 327fe356..327fe356 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/RPI_serialGetchar.sci +++ b/macros/Hardware/RasberryPi/Serial/RPI_serialGetchar.sci diff --git a/macros/Hardware/RasberryPi/Serial/RPI_serialOpen.sci b/macros/Hardware/RasberryPi/Serial/RPI_serialOpen.sci index 684a6f20..684a6f20 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/RPI_serialOpen.sci +++ b/macros/Hardware/RasberryPi/Serial/RPI_serialOpen.sci diff --git a/macros/Hardware/RasberryPi/Serial/RPI_serialPrintf.sci b/macros/Hardware/RasberryPi/Serial/RPI_serialPrintf.sci index 668a9fff..668a9fff 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/RPI_serialPrintf.sci +++ b/macros/Hardware/RasberryPi/Serial/RPI_serialPrintf.sci diff --git a/macros/Hardware/RasberryPi/Serial/RPI_serialPutchar.sci b/macros/Hardware/RasberryPi/Serial/RPI_serialPutchar.sci index ceea556c..ceea556c 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/RPI_serialPutchar.sci +++ b/macros/Hardware/RasberryPi/Serial/RPI_serialPutchar.sci diff --git a/macros/Hardware/RasberryPi/Serial/RPI_serialPuts.sci b/macros/Hardware/RasberryPi/Serial/RPI_serialPuts.sci index ecbbe057..ecbbe057 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/RPI_serialPuts.sci +++ b/macros/Hardware/RasberryPi/Serial/RPI_serialPuts.sci diff --git a/macros/Hardware/RasberryPi/Serial/buildmacros.sce b/macros/Hardware/RasberryPi/Serial/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/Serial/buildmacros.sce +++ b/macros/Hardware/RasberryPi/Serial/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/Serial/names b/macros/Hardware/RasberryPi/Serial/names deleted file mode 100755 index a652727e..00000000 --- a/macros/Hardware/RasberryPi/Serial/names +++ /dev/null @@ -1,8 +0,0 @@ -RPI_serialClose -RPI_serialDataAvail -RPI_serialFlush -RPI_serialGetchar -RPI_serialOpen -RPI_serialPrintf -RPI_serialPutchar -RPI_serialPuts diff --git a/macros/Hardware/RasberryPi/Setup/RPI_getAlt.sci b/macros/Hardware/RasberryPi/Setup/RPI_getAlt.sci index ba3d204f..ba3d204f 100755..100644 --- a/macros/Hardware/RasberryPi/Setup/RPI_getAlt.sci +++ b/macros/Hardware/RasberryPi/Setup/RPI_getAlt.sci diff --git a/macros/Hardware/RasberryPi/Setup/RPI_pinMode.sci b/macros/Hardware/RasberryPi/Setup/RPI_pinMode.sci index b6f52e61..b6f52e61 100755..100644 --- a/macros/Hardware/RasberryPi/Setup/RPI_pinMode.sci +++ b/macros/Hardware/RasberryPi/Setup/RPI_pinMode.sci diff --git a/macros/Hardware/RasberryPi/Setup/RPI_pinModeAlt.sci b/macros/Hardware/RasberryPi/Setup/RPI_pinModeAlt.sci index dd0fa101..dd0fa101 100755..100644 --- a/macros/Hardware/RasberryPi/Setup/RPI_pinModeAlt.sci +++ b/macros/Hardware/RasberryPi/Setup/RPI_pinModeAlt.sci diff --git a/macros/Hardware/RasberryPi/Setup/RPI_pinNumbering.sci b/macros/Hardware/RasberryPi/Setup/RPI_pinNumbering.sci index 4716de80..4716de80 100755..100644 --- a/macros/Hardware/RasberryPi/Setup/RPI_pinNumbering.sci +++ b/macros/Hardware/RasberryPi/Setup/RPI_pinNumbering.sci diff --git a/macros/Hardware/RasberryPi/Setup/RPI_pullControl.sci b/macros/Hardware/RasberryPi/Setup/RPI_pullControl.sci index 6354bf55..6354bf55 100755..100644 --- a/macros/Hardware/RasberryPi/Setup/RPI_pullControl.sci +++ b/macros/Hardware/RasberryPi/Setup/RPI_pullControl.sci diff --git a/macros/Hardware/RasberryPi/Setup/buildmacros.sce b/macros/Hardware/RasberryPi/Setup/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/Setup/buildmacros.sce +++ b/macros/Hardware/RasberryPi/Setup/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/Setup/names b/macros/Hardware/RasberryPi/Setup/names deleted file mode 100755 index 38954982..00000000 --- a/macros/Hardware/RasberryPi/Setup/names +++ /dev/null @@ -1,5 +0,0 @@ -RPI_getAlt -RPI_pinMode -RPI_pinModeAlt -RPI_pinNumbering -RPI_pullControl diff --git a/macros/Hardware/RasberryPi/Shift/RPI_shiftIn.sci b/macros/Hardware/RasberryPi/Shift/RPI_shiftIn.sci index 2bdb89b8..2bdb89b8 100755..100644 --- a/macros/Hardware/RasberryPi/Shift/RPI_shiftIn.sci +++ b/macros/Hardware/RasberryPi/Shift/RPI_shiftIn.sci diff --git a/macros/Hardware/RasberryPi/Shift/RPI_shiftOut.sci b/macros/Hardware/RasberryPi/Shift/RPI_shiftOut.sci index c3485609..c3485609 100755..100644 --- a/macros/Hardware/RasberryPi/Shift/RPI_shiftOut.sci +++ b/macros/Hardware/RasberryPi/Shift/RPI_shiftOut.sci diff --git a/macros/Hardware/RasberryPi/Shift/RPI_sr595Setup.sci b/macros/Hardware/RasberryPi/Shift/RPI_sr595Setup.sci index fb77f988..fb77f988 100755..100644 --- a/macros/Hardware/RasberryPi/Shift/RPI_sr595Setup.sci +++ b/macros/Hardware/RasberryPi/Shift/RPI_sr595Setup.sci diff --git a/macros/Hardware/RasberryPi/Shift/buildmacros.sce b/macros/Hardware/RasberryPi/Shift/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/Shift/buildmacros.sce +++ b/macros/Hardware/RasberryPi/Shift/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/Shift/names b/macros/Hardware/RasberryPi/Shift/names deleted file mode 100755 index 3fc17b6b..00000000 --- a/macros/Hardware/RasberryPi/Shift/names +++ /dev/null @@ -1,3 +0,0 @@ -RPI_shiftIn -RPI_shiftOut -RPI_sr595Setup diff --git a/macros/Hardware/RasberryPi/Soft/RPI_softPwmCreate.sci b/macros/Hardware/RasberryPi/Soft/RPI_softPwmCreate.sci index b0161c25..b0161c25 100755..100644 --- a/macros/Hardware/RasberryPi/Soft/RPI_softPwmCreate.sci +++ b/macros/Hardware/RasberryPi/Soft/RPI_softPwmCreate.sci diff --git a/macros/Hardware/RasberryPi/Soft/RPI_softPwmStop.sci b/macros/Hardware/RasberryPi/Soft/RPI_softPwmStop.sci index 5a911c8b..5a911c8b 100755..100644 --- a/macros/Hardware/RasberryPi/Soft/RPI_softPwmStop.sci +++ b/macros/Hardware/RasberryPi/Soft/RPI_softPwmStop.sci diff --git a/macros/Hardware/RasberryPi/Soft/RPI_softPwmWrite.sci b/macros/Hardware/RasberryPi/Soft/RPI_softPwmWrite.sci index 349923fa..349923fa 100755..100644 --- a/macros/Hardware/RasberryPi/Soft/RPI_softPwmWrite.sci +++ b/macros/Hardware/RasberryPi/Soft/RPI_softPwmWrite.sci diff --git a/macros/Hardware/RasberryPi/Soft/RPI_softToneCreate.sci b/macros/Hardware/RasberryPi/Soft/RPI_softToneCreate.sci index 06adf83e..06adf83e 100755..100644 --- a/macros/Hardware/RasberryPi/Soft/RPI_softToneCreate.sci +++ b/macros/Hardware/RasberryPi/Soft/RPI_softToneCreate.sci diff --git a/macros/Hardware/RasberryPi/Soft/RPI_softToneStop.sci b/macros/Hardware/RasberryPi/Soft/RPI_softToneStop.sci index 4ecc4208..4ecc4208 100755..100644 --- a/macros/Hardware/RasberryPi/Soft/RPI_softToneStop.sci +++ b/macros/Hardware/RasberryPi/Soft/RPI_softToneStop.sci diff --git a/macros/Hardware/RasberryPi/Soft/RPI_softToneWrite.sci b/macros/Hardware/RasberryPi/Soft/RPI_softToneWrite.sci index ba070a82..ba070a82 100755..100644 --- a/macros/Hardware/RasberryPi/Soft/RPI_softToneWrite.sci +++ b/macros/Hardware/RasberryPi/Soft/RPI_softToneWrite.sci diff --git a/macros/Hardware/RasberryPi/Soft/buildmacros.sce b/macros/Hardware/RasberryPi/Soft/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/Soft/buildmacros.sce +++ b/macros/Hardware/RasberryPi/Soft/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/Soft/names b/macros/Hardware/RasberryPi/Soft/names deleted file mode 100755 index da06cbb5..00000000 --- a/macros/Hardware/RasberryPi/Soft/names +++ /dev/null @@ -1,6 +0,0 @@ -RPI_softPwmCreate -RPI_softPwmStop -RPI_softPwmWrite -RPI_softToneCreate -RPI_softToneStop -RPI_softToneWrite diff --git a/macros/Hardware/RasberryPi/Timing/RPI_delay.sci b/macros/Hardware/RasberryPi/Timing/RPI_delay.sci index bd868e80..bd868e80 100755..100644 --- a/macros/Hardware/RasberryPi/Timing/RPI_delay.sci +++ b/macros/Hardware/RasberryPi/Timing/RPI_delay.sci diff --git a/macros/Hardware/RasberryPi/Timing/RPI_delayMicro.sci b/macros/Hardware/RasberryPi/Timing/RPI_delayMicro.sci index a1b5d595..a1b5d595 100755..100644 --- a/macros/Hardware/RasberryPi/Timing/RPI_delayMicro.sci +++ b/macros/Hardware/RasberryPi/Timing/RPI_delayMicro.sci diff --git a/macros/Hardware/RasberryPi/Timing/RPI_micros.sci b/macros/Hardware/RasberryPi/Timing/RPI_micros.sci index 058a8278..058a8278 100755..100644 --- a/macros/Hardware/RasberryPi/Timing/RPI_micros.sci +++ b/macros/Hardware/RasberryPi/Timing/RPI_micros.sci diff --git a/macros/Hardware/RasberryPi/Timing/RPI_millis.sci b/macros/Hardware/RasberryPi/Timing/RPI_millis.sci index baecddc2..baecddc2 100755..100644 --- a/macros/Hardware/RasberryPi/Timing/RPI_millis.sci +++ b/macros/Hardware/RasberryPi/Timing/RPI_millis.sci diff --git a/macros/Hardware/RasberryPi/Timing/buildmacros.sce b/macros/Hardware/RasberryPi/Timing/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/Timing/buildmacros.sce +++ b/macros/Hardware/RasberryPi/Timing/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/Timing/names b/macros/Hardware/RasberryPi/Timing/names deleted file mode 100755 index 0b47b345..00000000 --- a/macros/Hardware/RasberryPi/Timing/names +++ /dev/null @@ -1,4 +0,0 @@ -RPI_delay -RPI_delayMicro -RPI_micros -RPI_millis diff --git a/macros/Hardware/RasberryPi/buildmacros.sce b/macros/Hardware/RasberryPi/buildmacros.sce index 07b564e3..07b564e3 100755..100644 --- a/macros/Hardware/RasberryPi/buildmacros.sce +++ b/macros/Hardware/RasberryPi/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/cleanmacros.sce b/macros/Hardware/RasberryPi/cleanmacros.sce index a6428b2a..a6428b2a 100755..100644 --- a/macros/Hardware/RasberryPi/cleanmacros.sce +++ b/macros/Hardware/RasberryPi/cleanmacros.sce diff --git a/macros/Hardware/RasberryPi/gertBoard/RPI_analogRead.sci b/macros/Hardware/RasberryPi/gertBoard/RPI_analogRead.sci index 41bf877a..41bf877a 100755..100644 --- a/macros/Hardware/RasberryPi/gertBoard/RPI_analogRead.sci +++ b/macros/Hardware/RasberryPi/gertBoard/RPI_analogRead.sci diff --git a/macros/Hardware/RasberryPi/gertBoard/RPI_analogWrite.sci b/macros/Hardware/RasberryPi/gertBoard/RPI_analogWrite.sci index f7089f53..f7089f53 100755..100644 --- a/macros/Hardware/RasberryPi/gertBoard/RPI_analogWrite.sci +++ b/macros/Hardware/RasberryPi/gertBoard/RPI_analogWrite.sci diff --git a/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogRead.sci b/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogRead.sci index ce7e870e..ce7e870e 100755..100644 --- a/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogRead.sci +++ b/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogRead.sci diff --git a/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogSetup.sci b/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogSetup.sci index a8348110..a8348110 100755..100644 --- a/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogSetup.sci +++ b/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogSetup.sci diff --git a/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogWrite.sci b/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogWrite.sci index 3f8f9dd6..3f8f9dd6 100755..100644 --- a/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogWrite.sci +++ b/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardAnalogWrite.sci diff --git a/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardSPISetup.sci b/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardSPISetup.sci index d4117b00..d4117b00 100755..100644 --- a/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardSPISetup.sci +++ b/macros/Hardware/RasberryPi/gertBoard/RPI_gertboardSPISetup.sci diff --git a/macros/Hardware/RasberryPi/gertBoard/buildmacros.sce b/macros/Hardware/RasberryPi/gertBoard/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/gertBoard/buildmacros.sce +++ b/macros/Hardware/RasberryPi/gertBoard/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/gertBoard/names b/macros/Hardware/RasberryPi/gertBoard/names deleted file mode 100755 index 27a469a1..00000000 --- a/macros/Hardware/RasberryPi/gertBoard/names +++ /dev/null @@ -1,6 +0,0 @@ -RPI_analogRead -RPI_analogWrite -RPI_gertboardAnalogRead -RPI_gertboardAnalogSetup -RPI_gertboardAnalogWrite -RPI_gertboardSPISetup diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdCharDef.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdCharDef.sci index 905cca84..905cca84 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdCharDef.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdCharDef.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdClear.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdClear.sci index 6da7212d..6da7212d 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdClear.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdClear.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdCursor.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdCursor.sci index 98c54712..98c54712 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdCursor.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdCursor.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdCursorBlink.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdCursorBlink.sci index b16ebc50..b16ebc50 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdCursorBlink.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdCursorBlink.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdDisplay.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdDisplay.sci index de50af64..de50af64 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdDisplay.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdDisplay.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdHome.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdHome.sci index 0c4507f1..0c4507f1 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdHome.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdHome.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdInit.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdInit.sci index c5ddb1e5..c5ddb1e5 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdInit.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdInit.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdPosition.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdPosition.sci index 0f978324..0f978324 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdPosition.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdPosition.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdPrintf.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdPrintf.sci index 833bf44a..833bf44a 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdPrintf.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdPrintf.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdPutchar.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdPutchar.sci index 337691d8..337691d8 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdPutchar.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdPutchar.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdPuts.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdPuts.sci index 8584309d..8584309d 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdPuts.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdPuts.sci diff --git a/macros/Hardware/RasberryPi/lcd/RPI_lcdSendCommand.sci b/macros/Hardware/RasberryPi/lcd/RPI_lcdSendCommand.sci index db677bef..db677bef 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/RPI_lcdSendCommand.sci +++ b/macros/Hardware/RasberryPi/lcd/RPI_lcdSendCommand.sci diff --git a/macros/Hardware/RasberryPi/lcd/buildmacros.sce b/macros/Hardware/RasberryPi/lcd/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/lcd/buildmacros.sce +++ b/macros/Hardware/RasberryPi/lcd/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/lcd/names b/macros/Hardware/RasberryPi/lcd/names deleted file mode 100755 index 8f87ff8b..00000000 --- a/macros/Hardware/RasberryPi/lcd/names +++ /dev/null @@ -1,12 +0,0 @@ -RPI_lcdCharDef -RPI_lcdClear -RPI_lcdCursor -RPI_lcdCursorBlink -RPI_lcdDisplay -RPI_lcdHome -RPI_lcdInit -RPI_lcdPosition -RPI_lcdPrintf -RPI_lcdPutchar -RPI_lcdPuts -RPI_lcdSendCommand diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64Orientation.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64Orientation.sci index 5bfe4dcd..5bfe4dcd 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64Orientation.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64Orientation.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64circle.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64circle.sci index 96358a32..96358a32 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64circle.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64circle.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64clear.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64clear.sci index 5b800491..5b800491 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64clear.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64clear.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64ellipse.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64ellipse.sci index b4281e61..b4281e61 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64ellipse.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64ellipse.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64line.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64line.sci index 951a6639..951a6639 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64line.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64line.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64lineTo.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64lineTo.sci index 466713eb..466713eb 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64lineTo.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64lineTo.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64point.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64point.sci index 287b022a..287b022a 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64point.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64point.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64putchar.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64putchar.sci index a6b27240..a6b27240 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64putchar.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64putchar.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64puts.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64puts.sci index 6785f067..6785f067 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64puts.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64puts.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64rectangle.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64rectangle.sci index ccda4c62..ccda4c62 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64rectangle.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64rectangle.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64setOrigin.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64setOrigin.sci index 996b0623..996b0623 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64setOrigin.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64setOrigin.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64setup.sci b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64setup.sci index 60ded7d8..60ded7d8 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64setup.sci +++ b/macros/Hardware/RasberryPi/lcd128x64/RPI_lcd128x64setup.sci diff --git a/macros/Hardware/RasberryPi/lcd128x64/buildmacros.sce b/macros/Hardware/RasberryPi/lcd128x64/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/lcd128x64/buildmacros.sce +++ b/macros/Hardware/RasberryPi/lcd128x64/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/lcd128x64/names b/macros/Hardware/RasberryPi/lcd128x64/names deleted file mode 100755 index 82439718..00000000 --- a/macros/Hardware/RasberryPi/lcd128x64/names +++ /dev/null @@ -1,12 +0,0 @@ -RPI_lcd128x64Orientation -RPI_lcd128x64circle -RPI_lcd128x64clear -RPI_lcd128x64ellipse -RPI_lcd128x64line -RPI_lcd128x64lineTo -RPI_lcd128x64point -RPI_lcd128x64putchar -RPI_lcd128x64puts -RPI_lcd128x64rectangle -RPI_lcd128x64setOrigin -RPI_lcd128x64setup diff --git a/macros/Hardware/RasberryPi/mcp/RPI_mcp23008Setup.sci b/macros/Hardware/RasberryPi/mcp/RPI_mcp23008Setup.sci index 03963bd1..03963bd1 100755..100644 --- a/macros/Hardware/RasberryPi/mcp/RPI_mcp23008Setup.sci +++ b/macros/Hardware/RasberryPi/mcp/RPI_mcp23008Setup.sci diff --git a/macros/Hardware/RasberryPi/mcp/RPI_mcp23016Setup.sci b/macros/Hardware/RasberryPi/mcp/RPI_mcp23016Setup.sci index 0424616e..0424616e 100755..100644 --- a/macros/Hardware/RasberryPi/mcp/RPI_mcp23016Setup.sci +++ b/macros/Hardware/RasberryPi/mcp/RPI_mcp23016Setup.sci diff --git a/macros/Hardware/RasberryPi/mcp/RPI_mcp23017Setup.sci b/macros/Hardware/RasberryPi/mcp/RPI_mcp23017Setup.sci index c453ebb3..c453ebb3 100755..100644 --- a/macros/Hardware/RasberryPi/mcp/RPI_mcp23017Setup.sci +++ b/macros/Hardware/RasberryPi/mcp/RPI_mcp23017Setup.sci diff --git a/macros/Hardware/RasberryPi/mcp/RPI_mcp23s08Setup.sci b/macros/Hardware/RasberryPi/mcp/RPI_mcp23s08Setup.sci index b5b215b6..b5b215b6 100755..100644 --- a/macros/Hardware/RasberryPi/mcp/RPI_mcp23s08Setup.sci +++ b/macros/Hardware/RasberryPi/mcp/RPI_mcp23s08Setup.sci diff --git a/macros/Hardware/RasberryPi/mcp/RPI_mcp23s17Setup.sci b/macros/Hardware/RasberryPi/mcp/RPI_mcp23s17Setup.sci index 4ba9fd65..4ba9fd65 100755..100644 --- a/macros/Hardware/RasberryPi/mcp/RPI_mcp23s17Setup.sci +++ b/macros/Hardware/RasberryPi/mcp/RPI_mcp23s17Setup.sci diff --git a/macros/Hardware/RasberryPi/mcp/buildmacros.sce b/macros/Hardware/RasberryPi/mcp/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/mcp/buildmacros.sce +++ b/macros/Hardware/RasberryPi/mcp/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/mcp/names b/macros/Hardware/RasberryPi/mcp/names deleted file mode 100755 index 23e7af04..00000000 --- a/macros/Hardware/RasberryPi/mcp/names +++ /dev/null @@ -1,5 +0,0 @@ -RPI_mcp23008Setup -RPI_mcp23016Setup -RPI_mcp23017Setup -RPI_mcp23s08Setup -RPI_mcp23s17Setup diff --git a/macros/Hardware/RasberryPi/names b/macros/Hardware/RasberryPi/names deleted file mode 100755 index 9f20c937..00000000 --- a/macros/Hardware/RasberryPi/names +++ /dev/null @@ -1,5 +0,0 @@ -GetRPISupportFunctions -IsRPISupportFunction -RPI_adress -raspi -raspi_close diff --git a/macros/Hardware/RasberryPi/pcf/RPI_pcf8574Setup.sci b/macros/Hardware/RasberryPi/pcf/RPI_pcf8574Setup.sci index f3e79429..f3e79429 100755..100644 --- a/macros/Hardware/RasberryPi/pcf/RPI_pcf8574Setup.sci +++ b/macros/Hardware/RasberryPi/pcf/RPI_pcf8574Setup.sci diff --git a/macros/Hardware/RasberryPi/pcf/RPI_pcf8591Setup.sci b/macros/Hardware/RasberryPi/pcf/RPI_pcf8591Setup.sci index 87054907..87054907 100755..100644 --- a/macros/Hardware/RasberryPi/pcf/RPI_pcf8591Setup.sci +++ b/macros/Hardware/RasberryPi/pcf/RPI_pcf8591Setup.sci diff --git a/macros/Hardware/RasberryPi/pcf/buildmacros.sce b/macros/Hardware/RasberryPi/pcf/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/pcf/buildmacros.sce +++ b/macros/Hardware/RasberryPi/pcf/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/pcf/names b/macros/Hardware/RasberryPi/pcf/names deleted file mode 100755 index 3e326a01..00000000 --- a/macros/Hardware/RasberryPi/pcf/names +++ /dev/null @@ -1,2 +0,0 @@ -RPI_pcf8574Setup -RPI_pcf8591Setup diff --git a/macros/Hardware/RasberryPi/piGlow/RPI_piGlow1.sci b/macros/Hardware/RasberryPi/piGlow/RPI_piGlow1.sci index e093238c..e093238c 100755..100644 --- a/macros/Hardware/RasberryPi/piGlow/RPI_piGlow1.sci +++ b/macros/Hardware/RasberryPi/piGlow/RPI_piGlow1.sci diff --git a/macros/Hardware/RasberryPi/piGlow/RPI_piGlowLeg.sci b/macros/Hardware/RasberryPi/piGlow/RPI_piGlowLeg.sci index d0425797..d0425797 100755..100644 --- a/macros/Hardware/RasberryPi/piGlow/RPI_piGlowLeg.sci +++ b/macros/Hardware/RasberryPi/piGlow/RPI_piGlowLeg.sci diff --git a/macros/Hardware/RasberryPi/piGlow/RPI_piGlowRing.sci b/macros/Hardware/RasberryPi/piGlow/RPI_piGlowRing.sci index ef816205..ef816205 100755..100644 --- a/macros/Hardware/RasberryPi/piGlow/RPI_piGlowRing.sci +++ b/macros/Hardware/RasberryPi/piGlow/RPI_piGlowRing.sci diff --git a/macros/Hardware/RasberryPi/piGlow/RPI_piGlowSetup.sci b/macros/Hardware/RasberryPi/piGlow/RPI_piGlowSetup.sci index 718fa3b6..718fa3b6 100755..100644 --- a/macros/Hardware/RasberryPi/piGlow/RPI_piGlowSetup.sci +++ b/macros/Hardware/RasberryPi/piGlow/RPI_piGlowSetup.sci diff --git a/macros/Hardware/RasberryPi/piGlow/buildmacros.sce b/macros/Hardware/RasberryPi/piGlow/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/piGlow/buildmacros.sce +++ b/macros/Hardware/RasberryPi/piGlow/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/piGlow/names b/macros/Hardware/RasberryPi/piGlow/names deleted file mode 100755 index b63ec8f7..00000000 --- a/macros/Hardware/RasberryPi/piGlow/names +++ /dev/null @@ -1,4 +0,0 @@ -RPI_piGlow1 -RPI_piGlowLeg -RPI_piGlowRing -RPI_piGlowSetup diff --git a/macros/Hardware/RasberryPi/pinMap/RPI_physToGpio.sci b/macros/Hardware/RasberryPi/pinMap/RPI_physToGpio.sci index 9a59caa2..9a59caa2 100755..100644 --- a/macros/Hardware/RasberryPi/pinMap/RPI_physToGpio.sci +++ b/macros/Hardware/RasberryPi/pinMap/RPI_physToGpio.sci diff --git a/macros/Hardware/RasberryPi/pinMap/RPI_wpiToGpio.sci b/macros/Hardware/RasberryPi/pinMap/RPI_wpiToGpio.sci index deed4264..deed4264 100755..100644 --- a/macros/Hardware/RasberryPi/pinMap/RPI_wpiToGpio.sci +++ b/macros/Hardware/RasberryPi/pinMap/RPI_wpiToGpio.sci diff --git a/macros/Hardware/RasberryPi/pinMap/buildmacros.sce b/macros/Hardware/RasberryPi/pinMap/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/pinMap/buildmacros.sce +++ b/macros/Hardware/RasberryPi/pinMap/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/pinMap/names b/macros/Hardware/RasberryPi/pinMap/names deleted file mode 100755 index 71efa237..00000000 --- a/macros/Hardware/RasberryPi/pinMap/names +++ /dev/null @@ -1,2 +0,0 @@ -RPI_physToGpio -RPI_wpiToGpio diff --git a/macros/Hardware/RasberryPi/pwm/RPI_pwmClock.sci b/macros/Hardware/RasberryPi/pwm/RPI_pwmClock.sci index d0653537..d0653537 100755..100644 --- a/macros/Hardware/RasberryPi/pwm/RPI_pwmClock.sci +++ b/macros/Hardware/RasberryPi/pwm/RPI_pwmClock.sci diff --git a/macros/Hardware/RasberryPi/pwm/RPI_pwmMode.sci b/macros/Hardware/RasberryPi/pwm/RPI_pwmMode.sci index 13d0c367..13d0c367 100755..100644 --- a/macros/Hardware/RasberryPi/pwm/RPI_pwmMode.sci +++ b/macros/Hardware/RasberryPi/pwm/RPI_pwmMode.sci diff --git a/macros/Hardware/RasberryPi/pwm/RPI_pwmRange.sci b/macros/Hardware/RasberryPi/pwm/RPI_pwmRange.sci index 6a1503a0..6a1503a0 100755..100644 --- a/macros/Hardware/RasberryPi/pwm/RPI_pwmRange.sci +++ b/macros/Hardware/RasberryPi/pwm/RPI_pwmRange.sci diff --git a/macros/Hardware/RasberryPi/pwm/RPI_pwmToneWrite.sci b/macros/Hardware/RasberryPi/pwm/RPI_pwmToneWrite.sci index d7ff6eda..d7ff6eda 100755..100644 --- a/macros/Hardware/RasberryPi/pwm/RPI_pwmToneWrite.sci +++ b/macros/Hardware/RasberryPi/pwm/RPI_pwmToneWrite.sci diff --git a/macros/Hardware/RasberryPi/pwm/RPI_pwmWrite.sci b/macros/Hardware/RasberryPi/pwm/RPI_pwmWrite.sci index 113547af..113547af 100755..100644 --- a/macros/Hardware/RasberryPi/pwm/RPI_pwmWrite.sci +++ b/macros/Hardware/RasberryPi/pwm/RPI_pwmWrite.sci diff --git a/macros/Hardware/RasberryPi/pwm/buildmacros.sce b/macros/Hardware/RasberryPi/pwm/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Hardware/RasberryPi/pwm/buildmacros.sce +++ b/macros/Hardware/RasberryPi/pwm/buildmacros.sce diff --git a/macros/Hardware/RasberryPi/pwm/names b/macros/Hardware/RasberryPi/pwm/names deleted file mode 100755 index 87e70884..00000000 --- a/macros/Hardware/RasberryPi/pwm/names +++ /dev/null @@ -1,5 +0,0 @@ -RPI_pwmClock -RPI_pwmMode -RPI_pwmRange -RPI_pwmToneWrite -RPI_pwmWrite diff --git a/macros/Hardware/RasberryPi/raspi.sci b/macros/Hardware/RasberryPi/raspi.sci index 4da09ca4..4da09ca4 100755..100644 --- a/macros/Hardware/RasberryPi/raspi.sci +++ b/macros/Hardware/RasberryPi/raspi.sci diff --git a/macros/Hardware/RasberryPi/raspi_close.sci b/macros/Hardware/RasberryPi/raspi_close.sci index b5bb0ee7..b5bb0ee7 100755..100644 --- a/macros/Hardware/RasberryPi/raspi_close.sci +++ b/macros/Hardware/RasberryPi/raspi_close.sci diff --git a/macros/ImageProcessing/core/names b/macros/ImageProcessing/core/names deleted file mode 100644 index f56c951c..00000000 --- a/macros/ImageProcessing/core/names +++ /dev/null @@ -1,2 +0,0 @@ -CV_CreateImage -CV_GetImgSize diff --git a/macros/ImageProcessing/highgui/names b/macros/ImageProcessing/highgui/names deleted file mode 100644 index a717164a..00000000 --- a/macros/ImageProcessing/highgui/names +++ /dev/null @@ -1,4 +0,0 @@ -CV_LoadImage -CV_SaveImage -CV_ShowImage -CV_WaitKey diff --git a/macros/ImageProcessing/imgproc/names b/macros/ImageProcessing/imgproc/names deleted file mode 100644 index 16240f53..00000000 --- a/macros/ImageProcessing/imgproc/names +++ /dev/null @@ -1,11 +0,0 @@ -CV_AdaptiveThreshold -CV_Blur -CV_Canny -CV_CornerHarris -CV_CvtColor -CV_Dilate -CV_DistanceTransform -CV_Erode -CV_GaussianBlur -CV_MedianBlur -CV_Threshold diff --git a/macros/Scilab-Arduino/buildmacros.sce b/macros/Scilab-Arduino/buildmacros.sce index 7d533f7b..7d533f7b 100755..100644 --- a/macros/Scilab-Arduino/buildmacros.sce +++ b/macros/Scilab-Arduino/buildmacros.sce diff --git a/macros/Scilab-Arduino/names b/macros/Scilab-Arduino/names deleted file mode 100644 index 8b8d7c48..00000000 --- a/macros/Scilab-Arduino/names +++ /dev/null @@ -1,11 +0,0 @@ -GenerateSetupFunction -GetArduinoFunctions -GetArduinoSetupFunctions -InsertSetupInList -IsArduinoFunction -IsArduinoSetupFunction -cmd_i2c_dev -cmd_i2c_read -cmd_i2c_read_register -cmd_i2c_write -cmd_i2c_write_register diff --git a/macros/SymbolTable/names b/macros/SymbolTable/names deleted file mode 100644 index c2efc843..00000000 --- a/macros/SymbolTable/names +++ /dev/null @@ -1,13 +0,0 @@ -ST_AnalyzeScope -ST_Del -ST_FindPos -ST_Get -ST_GetInArgInfo -ST_GetSymbolInfo -ST_InsForCntVars -ST_InsOutArg -ST_InsOutArg_Dup -ST_Load -ST_MatchSymbol -ST_Save -ST_Set diff --git a/macros/ToolInitialization/SCI2CInputParameters.bkp b/macros/ToolInitialization/SCI2CInputParameters.bkp deleted file mode 100644 index 7af3343c..00000000 --- a/macros/ToolInitialization/SCI2CInputParameters.bkp +++ /dev/null @@ -1,87 +0,0 @@ -// -----------------------------------------------------------------
-// === hArtes/PoliBa/GAP SCI2C tool ===
-// === Authors: ===
-// === Raffaele Nutricato ===
-// === raffaele.nutricato@tiscali.it ===
-// === Alberto Morea ===
-// === ===
-// === *************** ===
-// === USER PARAMETERS ===
-// === *************** ===
-// === ===
-//
-// Copyright 2007 Raffaele Nutricato.
-// Contact: raffaele.nutricato@tiscali.it
-// -----------------------------------------------------------------
-
-
-// ------------------------------------------
-// --- Specify Paths of User Scilab code. ---
-// ------------------------------------------
-UserSciCodeMainDir = 'C:\SCI2CTests\RegressionTests\test999';
-
-// --- Path + filename of the .sci main file of the code to be translated. ---
-// It is the entry point.
-UserScilabMainFile = fullfile(UserSciCodeMainDir,'scilabcode\mainfun.sci');
-
-// --- List of the paths containing the .sci files written by the user. ---
-UserSciFilesPaths = ...
- [...
- fullfile(UserSciCodeMainDir,'scilabcode');...
- ];
-
-// --------------------------
-// --- End Specify paths. ---
-// --------------------------
-
-
-// ----------------------------
-// --- Select the run mode. ---
-// ----------------------------
-//RunMode = 'GenLibraryStructure';
-//RunMode = 'Translate';
-RunMode = 'All';
-
-// --- Select one of the following options. ---
-
-// 'GenLibraryStructure';
-// Generates the library structure and exits. It is very
-// useful when the user wants to manually change the files stored in that structure
-// before running the translation. 'GenLibraryStructure' option forces SCI2C to remove
-// the already existing WorkingDir and OutCCCodeDir directories.
-
-// 'Translate';
-// Performs the translation without generating the library structure. It means that the library
-// structure must be already existing. This is useful when the user doesn't want to spend time
-// to generate again that structure or when he wants to force the SCI2C tool to access to
-// a manually-changed library structure. 'Translate' option forces SCI2C to don't remove
-// the already existing WorkingDir. Only OutCCCodeDir directory will be removed.
-
-// 'All';
-// Performs all the actions listed above.
-
-// --------------------------------
-// --- End Select the run mode. ---
-// --------------------------------
-
-
-// ----------------------------
-// --- Translation Options. ---
-// ----------------------------
-// --- Enable (1) / Disable (0) copy of Scilab code into C code. ---
-// If 1 the Scilab code will be copied into the C code in order to show
-// how each Scilab code line has been translated into C code.
-CopySciCodeIntoCCode = 1;
-
-// --- Select the path style for the C code. ---
-// It can be:
-// windows
-// unix
-// cygwin
-CCompilerPathStyle = 'cygwin';
-
-// --- Path + File name of the main SCI2C library header file.
-Sci2CLibMainHeaderFName = 'C:\Nutricato\OpenProjects\FP6_hArtes\WP2_SCI2C\Software\Scilab2C\CFiles\sci2cincludes\sci2clib.h';
-// --------------------------------
-// --- End Translation Options. ---
-// --------------------------------
diff --git a/macros/ToolInitialization/names b/macros/ToolInitialization/names deleted file mode 100644 index 71a724d3..00000000 --- a/macros/ToolInitialization/names +++ /dev/null @@ -1,14 +0,0 @@ -INIT_CreateDirs -INIT_FillSCI2LibCDirs -INIT_GenAnnFLFunctions -INIT_GenFileInfo -INIT_GenLibraries -INIT_GenSharedInfo -INIT_LoadLibraries -INIT_RemoveDirs -INIT_SCI2C -INIT_SharedInfoEqual -ManageNextConversion -UpdateSCI2CInfo -doublecomplex -floatcomplex diff --git a/macros/findDeps/names b/macros/findDeps/names deleted file mode 100644 index b1825b69..00000000 --- a/macros/findDeps/names +++ /dev/null @@ -1,8 +0,0 @@ -Scilab2CDeps -findDeps -getAllHeaders -getAllInterfaces -getAllLibraries -getAllSources -getArduinoFiles -get_rquird_fnctns |