summaryrefslogtreecommitdiff
path: root/n/avr/modules/utils
diff options
context:
space:
mode:
authorschodet2006-01-18 13:21:58 +0000
committerschodet2006-01-18 13:21:58 +0000
commitcc043098a8d15c4c6adc8f7fd7fb986057740938 (patch)
tree2da54a1af973f890a622577b89fe09f3c12a3621 /n/avr/modules/utils
parent5262fffd973ce7475c1e62ff5b30f98cc50aeea2 (diff)
Clarification des makefiles.
Modifications cosmétiques. Mise à jour d'un début de doc. meilleur support des cibles simu.
Diffstat (limited to 'n/avr/modules/utils')
-rw-r--r--n/avr/modules/utils/test/Makefile5
-rw-r--r--n/avr/modules/utils/test/test_utils.c3
2 files changed, 1 insertions, 7 deletions
diff --git a/n/avr/modules/utils/test/Makefile b/n/avr/modules/utils/test/Makefile
index 535ac0e..783d792 100644
--- a/n/avr/modules/utils/test/Makefile
+++ b/n/avr/modules/utils/test/Makefile
@@ -4,8 +4,6 @@ AVR_PROGS = test_byte_methods
test_utils_SOURCES = test_utils.c
test_byte_SOURCES = test_byte.c
test_byte_methods_SOURCES = test_byte_methods.c
-DOC =
-EXTRACTDOC =
MODULES = utils
CONFIGFILE = avrconfig.h
# atmega8, atmega8535, atmega128...
@@ -14,7 +12,4 @@ AVR_MCU = atmega128
# -Os : size
OPTIMIZE = -O2
-DEFS =
-LIBS =
-
include $(BASE)/make/Makefile.gen
diff --git a/n/avr/modules/utils/test/test_utils.c b/n/avr/modules/utils/test/test_utils.c
index 5d5408b..4c85c45 100644
--- a/n/avr/modules/utils/test/test_utils.c
+++ b/n/avr/modules/utils/test/test_utils.c
@@ -22,6 +22,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* }}} */
+#include "common.h"
#include "modules/utils/utils.h"
#include "io.h"
@@ -34,8 +35,6 @@ main (void)
0, 0, 0, 0, 0, 1, 1, 1);
TCCR0 = regv (FOC0, WGM00, COM01, COM0, WGM01, CS02, CS01, CS00,
0, 0, 0, 0, 0, 1, 1, 1);
-#else
- printf ("TODO: reset message\n");
#endif
/* Test delays, use sei to separate loops in assembly listing. */
sei (); utils_delay_ns (1);