]> jspc29.x-matter.uni-frankfurt.de Git - mvd_firmware.git/commitdiff
removed work from usart1 interrup routine
authorMichael Wiebusch <stratomaster@gmx.net>
Fri, 20 Dec 2013 16:50:35 +0000 (17:50 +0100)
committerMichael Wiebusch <stratomaster@gmx.net>
Fri, 20 Dec 2013 16:50:35 +0000 (17:50 +0100)
firmware/src/CB_functions.c
firmware/src/main.c
firmware/src/spi1.c [moved from firmware/src/spi.c with 100% similarity]
firmware/src/spi1.h [moved from firmware/src/spi.h with 100% similarity]

index 7e94b3812b2122a3f29bc77a728c1a11706eaee5..3f5cfd0c5070ead1fe2d425622a4ac34ad23a458 100644 (file)
@@ -17,8 +17,8 @@ uint16_t uC_regs[UC_NO_REGS];
 
 
 void uart_byte_to_fpga(uint8_t byte){
-  USART_SendData(USART1, byte); // send address
   while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
+  USART_SendData(USART1, byte); // send address
 }
 
 void report_register(uint8_t addr) {
index 59c56db93c0a36177e7459ae50bee4e6b8f6017c..dc52a1743e1a0ea9a329354387975218a0cab847 100644 (file)
@@ -48,6 +48,8 @@ void USART1_IRQHandler(void);
 
 // MAIN ---------------------------------------------------------------------
 int main(int argc, char *argv[]) {
+  
+  uint8_t UcRegAddr;
 
        SystemInit();
   disable_JTAG(); //disable JTAG to free GPIO ports
@@ -71,6 +73,13 @@ int main(int argc, char *argv[]) {
   
   report_all_registers();
 
+  while(1) {
+    
+    if(BufferOut(&UcRegAddr)){
+      decode_register(UcRegAddr);
+    }
+    
+  }
 
        return 0;
 
@@ -135,7 +144,8 @@ void USART1_IRQHandler(void)
       byte0 = data;
       uC_regs[addr] = ((uint16_t) byte1)<<8 | (uint16_t) byte0;
       byte_counter = 0;
-      decode_register(addr);
+//       decode_register(addr);
+      BufferIn(addr);
       break;
   }
 }      
similarity index 100%
rename from firmware/src/spi.c
rename to firmware/src/spi1.c
similarity index 100%
rename from firmware/src/spi.h
rename to firmware/src/spi1.h