]> jspc29.x-matter.uni-frankfurt.de Git - mvd_firmware.git/commitdiff
switches and LEDs now controllable from FPGA
authorMichael Wiebusch <stratomaster@gmx.net>
Tue, 17 Dec 2013 10:14:00 +0000 (11:14 +0100)
committerMichael Wiebusch <stratomaster@gmx.net>
Tue, 17 Dec 2013 10:14:00 +0000 (11:14 +0100)
firmware/src/main.c

index 4fc5aa74d925dba43edd6ad8483a7467c3a05c0a..d95708ba9317f562a3df222839d3097c4bc682af 100644 (file)
@@ -465,8 +465,8 @@ void USART1_IRQHandler(void)
 void decode_uC_reg(uint8_t addr) {
  
   switch (addr){
-    case 0:
-      uC_regs[uC_regs[addr]]++;
+    case 0x0:
+      uC_regs[uC_regs[addr]]++; // just for debug reasons
       USART_SendData(USART1, addr);
       while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
       USART_SendData(USART1, (uint8_t) (uC_regs[addr]>>8)); // upper nibble
@@ -475,7 +475,7 @@ void decode_uC_reg(uint8_t addr) {
       while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
       
       break;
-    case 1:
+    case 0x1:
       CB_GPIO_Out(ENAA0,uC_regs[addr] & 1<<5);
       CB_GPIO_Out(DISA0,uC_regs[addr] & 1<<4);
       CB_GPIO_Out(ENAD0,uC_regs[addr] & 1<<3);
@@ -483,6 +483,31 @@ void decode_uC_reg(uint8_t addr) {
       CB_GPIO_Out(SENSOREN0,uC_regs[addr] & 1<<1);
       CB_GPIO_Out(JTAGEN0,uC_regs[addr] & 1<<0);
       break;
+    case 0x2:
+      CB_GPIO_Out(ENAA1,uC_regs[addr] & 1<<5);
+      CB_GPIO_Out(DISA1,uC_regs[addr] & 1<<4);
+      CB_GPIO_Out(ENAD1,uC_regs[addr] & 1<<3);
+      CB_GPIO_Out(DISD1,uC_regs[addr] & 1<<2);
+      CB_GPIO_Out(SENSOREN1,uC_regs[addr] & 1<<1);
+      CB_GPIO_Out(JTAGEN1,uC_regs[addr] & 1<<0);
+      break;
+      
+    case 0x10:
+      if(uC_regs[addr] & 1<<7) {
+        CB_GPIO_Out(LED4,uC_regs[addr] & 1<<3);
+      }
+      if(uC_regs[addr] & 1<<6) {
+        CB_GPIO_Out(LED3,uC_regs[addr] & 1<<2);
+      }
+      if(uC_regs[addr] & 1<<5) {
+        CB_GPIO_Out(LED2,uC_regs[addr] & 1<<1);
+      }
+      if(uC_regs[addr] & 1<<4) {
+        CB_GPIO_Out(LED1,uC_regs[addr] & 1<<0);
+      }
+      
+      break;
+      
     
   }