From 31d6eeca16f2cbdfae2043f73f4b27001ec4b254 Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Tue, 22 Dec 2009 16:22:24 +0000 Subject: [PATCH] misc: Disabled debug traces No functionsl changes Signed-off-by: Michel Pollet --- simavr/sim/avr_spi.c | 2 +- simavr/sim/avr_twi.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simavr/sim/avr_spi.c b/simavr/sim/avr_spi.c index b2f45ac..141eb1e 100644 --- a/simavr/sim/avr_spi.c +++ b/simavr/sim/avr_spi.c @@ -93,7 +93,7 @@ void avr_spi_init(avr_t * avr, avr_spi_t * p) avr_register_io(avr, &p->io); avr_register_vector(avr, &p->spi); - printf("%s SPI%c init\n", __FUNCTION__, p->name); + //printf("%s SPI%c init\n", __FUNCTION__, p->name); // allocate this module's IRQ p->io.irq_count = SPI_IRQ_COUNT; diff --git a/simavr/sim/avr_twi.c b/simavr/sim/avr_twi.c index 3c4d120..0f7e648 100644 --- a/simavr/sim/avr_twi.c +++ b/simavr/sim/avr_twi.c @@ -126,7 +126,7 @@ void avr_twi_init(avr_t * avr, avr_twi_t * p) twi_slave_init(&p->slave, p); twi_bus_init(&p->bus); - printf("%s TWI%c init\n", __FUNCTION__, p->name); + //printf("%s TWI%c init\n", __FUNCTION__, p->name); // allocate this module's IRQ p->io.irq_count = TWI_IRQ_COUNT; -- 2.39.5