From 3268b0fc9a368335cf05e1d5244ad6fa4ab662ee Mon Sep 17 00:00:00 2001 From: Bernhard Urban Date: Sun, 13 Dec 2009 08:06:43 +0100 Subject: [PATCH] refactor fun --- Makefile | 2 +- Flash.c => flash.c | 2 +- Flash.h => flash.h | 0 MAIN.c => main.c | 4 ++-- RLT.c => rlt.c | 2 +- RLT.h => rlt.h | 0 Start91460.asm => start91460.asm | 0 vectors.c | 2 +- 8 files changed, 6 insertions(+), 6 deletions(-) rename Flash.c => flash.c (99%) rename Flash.h => flash.h (100%) rename MAIN.c => main.c (99%) rename RLT.c => rlt.c (99%) rename RLT.h => rlt.h (100%) rename Start91460.asm => start91460.asm (100%) diff --git a/Makefile b/Makefile index 2c0483a..347d674 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ DEPDIR = .deps #add all objects here -OBJS = vectors.obj Start91460.obj mb91465k.obj MAIN.obj RLT.obj uart.obj Flash.obj +OBJS = vectors.obj start91460.obj mb91465k.obj main.obj rlt.obj uart.obj flash.obj AS = $(PREFIX)fasm911s CC = $(PREFIX)fcc911s diff --git a/Flash.c b/flash.c similarity index 99% rename from Flash.c rename to flash.c index f208073..c72b463 100644 --- a/Flash.c +++ b/flash.c @@ -5,7 +5,7 @@ /* (C) Fujitsu Microelectronics Europe GmbH */ /*****************************************************************************/ -#include "Flash.h" +#include "flash.h" #include "mb91465k.h" static unsigned int IFlag; diff --git a/Flash.h b/flash.h similarity index 100% rename from Flash.h rename to flash.h diff --git a/MAIN.c b/main.c similarity index 99% rename from MAIN.c rename to main.c index b5d776e..9f1cd28 100644 --- a/MAIN.c +++ b/main.c @@ -14,8 +14,8 @@ /*************************@INCLUDE_START************************/ #include "mb91465k.h" #include "vectors.h" -#include "RLT.h" -#include "Flash.h" +#include "rlt.h" +#include "flash.h" /**************************@INCLUDE_END*************************/ /*********************@GLOBAL_VARIABLES_START*******************/ diff --git a/RLT.c b/rlt.c similarity index 99% rename from RLT.c rename to rlt.c index eadab63..58f9c76 100644 --- a/RLT.c +++ b/rlt.c @@ -5,7 +5,7 @@ /* (C) Fujitsu Microelectronics Europe GmbH */ /*****************************************************************************/ -#include "RLT.h" +#include "rlt.h" void RLT_InitializeTimer(unsigned char channel, unsigned char runmode, unsigned char clockmode, unsigned char triggermode, unsigned char outputmode) { diff --git a/RLT.h b/rlt.h similarity index 100% rename from RLT.h rename to rlt.h diff --git a/Start91460.asm b/start91460.asm similarity index 100% rename from Start91460.asm rename to start91460.asm diff --git a/vectors.c b/vectors.c index 01d76d0..448f33b 100644 --- a/vectors.c +++ b/vectors.c @@ -16,7 +16,7 @@ -------------------------------------------------------------------------*/ #include "mb91465k.h" -#include "RLT.h" +#include "rlt.h" /*------------------------------------------------------------------------ InitIrqLevels() -- 2.25.1