From e02c287f1562770a69737883b9968698a603d9d8 Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Sun, 1 Apr 2012 20:45:27 +0100 Subject: [PATCH] Solved a text encoding issue --- platform/sensinode/contiki-sensinode-main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/sensinode/contiki-sensinode-main.c b/platform/sensinode/contiki-sensinode-main.c index 48d27269f..5d6267c94 100644 --- a/platform/sensinode/contiki-sensinode-main.c +++ b/platform/sensinode/contiki-sensinode-main.c @@ -118,7 +118,7 @@ set_rime_addr(void) /* Don't interrupt us to make sure no BANK switching happens while working */ DISABLE_INTERRUPTS(); - /* Switch to BANK3, map CODE: 0x8000 – 0xFFFF to FLASH: 0x18000 – 0x1FFFF */ + /* Switch to BANK3, map CODE: 0x8000 - 0xFFFF to FLASH: 0x18000 - 0x1FFFF */ FMAP = 3; /* Set our pointer to the correct address and fetch 8 bytes of MAC */ @@ -129,7 +129,7 @@ set_rime_addr(void) macp++; } - /* Remap 0x8000 – 0xFFFF to BANK1 */ + /* Remap 0x8000 - 0xFFFF to BANK1 */ FMAP = 1; ENABLE_INTERRUPTS();