diff --git a/firmware/src/edubrm.c b/firmware/src/edubrm.c index 5644ec8..e895619 100644 --- a/firmware/src/edubrm.c +++ b/firmware/src/edubrm.c @@ -119,6 +119,7 @@ void PinInit() { LPC_IOCON->PIO3_1 |= 0x00; LPC_GPIO2->DIR |= (1<<8) | (1<<9) | (1<<10) | (1<<11); LPC_GPIO3->DIR |= (1<<0) | (1<<1); + SwitchesState(0); //set chip select pins function LPC_IOCON->PIO0_2 &= ~0x07; // DDS diff --git a/software/modules/ModuleDebug.py b/software/modules/ModuleDebug.py index f7192df..32bf474 100644 --- a/software/modules/ModuleDebug.py +++ b/software/modules/ModuleDebug.py @@ -29,7 +29,7 @@ class ModuleDebugWidget(QWidget): # real device: self.dev = Device() # fake device: - # self.dev = Device(True) +# self.dev = Device(True) self.timer = QTimer() QObject.connect(self.timer, SIGNAL("timeout()"), self.read_inputs)