From 9653fa601e3eece382294e68b2f9aff17e3d3f67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sun, 14 Aug 2016 08:16:20 +0000 Subject: [PATCH] disabled debug output. This is version 0.88, "official" release --- pci/pci.c | 2 +- tos/fpga_test/sources/fpga_test.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pci/pci.c b/pci/pci.c index 235df98..82d52f2 100644 --- a/pci/pci.c +++ b/pci/pci.c @@ -34,7 +34,7 @@ #include "interrupts.h" #include "wait.h" -#define DEBUG_PCI +// #define DEBUG_PCI #ifdef DEBUG_PCI #define dbg(format, arg...) do { xprintf("DEBUG: %s(): " format, __FUNCTION__, ##arg); } while (0) #else diff --git a/tos/fpga_test/sources/fpga_test.c b/tos/fpga_test/sources/fpga_test.c index 4a943ab..25e514d 100644 --- a/tos/fpga_test/sources/fpga_test.c +++ b/tos/fpga_test/sources/fpga_test.c @@ -27,8 +27,8 @@ int i; void do_tests(void) { volatile unsigned long *t1 = (volatile unsigned long *) 0xf0000000; - volatile unsigned short *t2 = (volatile unsigned short *) 0xf0000004; - volatile unsigned short *t3 = (volatile unsigned short *) 0xf0000006; + volatile unsigned short *t2 = (volatile unsigned short *) 0xf0000000; + volatile unsigned short *t3 = (volatile unsigned short *) 0xf0000002; long value = 0; while (1)