]> jspc29.x-matter.uni-frankfurt.de Git - mvd_firmware.git/commitdiff
c project management, cleaning up
authorMichael Wiebusch <antiquark@gmx.net>
Wed, 8 Jan 2014 10:20:26 +0000 (11:20 +0100)
committerMichael Wiebusch <antiquark@gmx.net>
Wed, 8 Jan 2014 10:20:26 +0000 (11:20 +0100)
firmware/src/CB_functions.c
firmware/src/CB_functions.h
firmware/src/dac.c
firmware/src/dac.h

index 05691495937394283c056d8b943069d293692e99..90b71b6018325ee192dc704a69a395d0b547e673 100644 (file)
 #include "stm32f10x_conf.h"
 #include "misc_utils.h"
 #include "spi1.h"
+#include "dac.h"
 
 
 extern uint16_t spiDataBuffer[];
 uint16_t uC_regs[UC_NO_REGS];
 
-void uart_word_to_dac(uint16_t word){
-  while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
-  CB_GPIO_Out_Lo(DAC_CS);
-  
-  USART_SendData(USART3, reverse_8bit(0x30 | ((word>>12)&0xF)));
-  while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
-  USART_SendData(USART3, reverse_8bit((word>>4)&0xFF));
-  while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
-  USART_SendData(USART3, reverse_8bit((word<<4)&0xFF));
-  delay_ms(1);
-  while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
-  CB_GPIO_Out_Hi(DAC_CS);
-}
+
 
 void uart_byte_to_fpga(uint8_t byte){
   while (USART_GetFlagStatus(USART1, USART_FLAG_TXE) == RESET);
@@ -66,7 +55,10 @@ void report_all_registers(void) {
 }
 
 
-
+inline void adc_conv0_pulse(void){
+  ADC_CONV0_GPIO_PORT->BSRR = ADC_CONV0_PIN; // make a ...
+  ADC_CONV0_GPIO_PORT->BRR = ADC_CONV0_PIN; // ... short activation pulse
+}
 
 
 void decode_register(uint8_t addr) {
@@ -91,11 +83,11 @@ void decode_register(uint8_t addr) {
       CB_GPIO_Out(JTAGEN0,*thisRegister & 1<<0);
       break;
     case 0x2: //DAC CurLimA 0
-      uart_word_to_dac(((*thisRegister&0xFFFF)>>4) | (0<<12));
+      usart3_word_to_dac(((*thisRegister&0xFFFF)>>4) | (0<<12));
     case 0x3: //DAC CurLimD 0
-      uart_word_to_dac(((*thisRegister&0xFFFF)>>4) | (1<<12));
+      usart3_word_to_dac(((*thisRegister&0xFFFF)>>4) | (1<<12));
     case 0x4: //DAC VClp 0
-      uart_word_to_dac(((*thisRegister&0xFFFF)>>4) | (2<<12));
+      usart3_word_to_dac(((*thisRegister&0xFFFF)>>4) | (2<<12));
       
     case 0x6: // Switches1
       CB_GPIO_Out(ENAA1,*thisRegister & 1<<5);
@@ -106,18 +98,17 @@ void decode_register(uint8_t addr) {
       CB_GPIO_Out(JTAGEN1,*thisRegister & 1<<0);
       break;
     case 0x7: //DAC CurLimA 1
-      uart_word_to_dac(((*thisRegister&0xFFFF)>>4) | (4<<12));
+      usart3_word_to_dac(((*thisRegister&0xFFFF)>>4) | (4<<12));
     case 0x8: //DAC CurLimD 1
-      uart_word_to_dac(((*thisRegister&0xFFFF)>>4) | (5<<12));
+      usart3_word_to_dac(((*thisRegister&0xFFFF)>>4) | (5<<12));
     case 0x9: //DAC VClp 1
-      uart_word_to_dac(((*thisRegister&0xFFFF)>>4) | (6<<12));
+      usart3_word_to_dac(((*thisRegister&0xFFFF)>>4) | (6<<12));
      
     case 0xF: //SPI Debug
-//       uart_word_to_dac( (uint16_t) (*thisRegister&0xFFFF));
+//       usart3_word_to_dac( (uint16_t) (*thisRegister&0xFFFF));
       //CB_GPIO_Out_Hi(ADC_CONV0); // start conversion
       
-      ADC_CONV0_GPIO_PORT->BSRR = ADC_CONV0_PIN; // make a ...
-      ADC_CONV0_GPIO_PORT->BRR = ADC_CONV0_PIN; // ... short activation pulse
+      adc_conv0_pulse();
       
       delay_us(4); // wait conversion time
       //CB_GPIO_Out_Lo(ADC_CONV0); // now the data is ready
index 7a24ff5043f831d998d0b0f53596f197d19fb750..a4ec56c37c33962838ea95b0a73680f045c36e54 100644 (file)
@@ -16,5 +16,5 @@ void decode_register(uint8_t addr);
 
 void report_register(uint8_t addr);
 void report_all_registers(void);
-
+void adc_conv0_pulse(void);
 void uart_byte_to_fpga(uint8_t byte);
\ No newline at end of file
index ea5e5e660fb36f9b45efc237bb5e9ce3c5dd2fa6..b5eb2471e5c4509825573ab08f5fc965d3b972c2 100644 (file)
@@ -7,6 +7,23 @@
  */
 
 #include "dac.h"
+#include "periph_conf.h"
+#include "misc_utils.h"
+
+
+void usart3_word_to_dac(uint16_t word){
+  while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
+  CB_GPIO_Out_Lo(DAC_CS);
+  
+  USART_SendData(USART3, reverse_8bit(0x30 | ((word>>12)&0xF)));
+  while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
+  USART_SendData(USART3, reverse_8bit((word>>4)&0xFF));
+  while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
+  USART_SendData(USART3, reverse_8bit((word<<4)&0xFF));
+  delay_ms(1);
+  while (USART_GetFlagStatus(USART3, USART_FLAG_TXE) == RESET);
+  CB_GPIO_Out_Hi(DAC_CS);
+}
 
 
 void init_USART3() {
index 3c49a29785933e4c273493e85d5ac877d2e27766..6d32884da1ef9ce0eb7e10869e7e60af82c36610 100644 (file)
@@ -12,4 +12,5 @@
 #include "stm32f10x_conf.h"
 
 
-void init_USART3(void);
\ No newline at end of file
+void init_USART3(void);
+void usart3_word_to_dac(uint16_t word);
\ No newline at end of file