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

index 90b71b6018325ee192dc704a69a395d0b547e673..352bb2115b153872698edbf132d4fa951cdf6d1b 100644 (file)
@@ -55,10 +55,7 @@ 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) {
index a4ec56c37c33962838ea95b0a73680f045c36e54..7a24ff5043f831d998d0b0f53596f197d19fb750 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 17b6b36da58e0820417054102bb3c9fe94e780ad..63f2ccac772e7d4198f69507d96acf37df811010 100644 (file)
@@ -5,8 +5,8 @@
 #define BUFFER_SIZE 2
  
 SPI_TypeDef * SPI_Module;
-GPIO_TypeDef * CS_GPIO;
-uint16_t CS_GPIO_Pin;
+// GPIO_TypeDef * CS_GPIO;
+// uint16_t CS_GPIO_Pin;
  
 uint8_t spiRxCounter;
 uint8_t spiTxCounter;
@@ -18,12 +18,12 @@ GPIO_InitTypeDef GPIO_InitStructure;
 NVIC_InitTypeDef NVIC_InitStructure;
 SPI_InitTypeDef SPI_InitStructure;
  
-void spi_create(SPI_TypeDef * SPIx, GPIO_TypeDef * CS_GPIOx){
-  SPI_Module = SPIx;
-  CS_GPIO = CS_GPIOx;
-//   CS_GPIO_Pin = CS_GPIO_Pin_x;
-  spiBusyFlag = 0;
-}
+// void spi_create(SPI_TypeDef * SPIx, GPIO_TypeDef * CS_GPIOx){
+//   SPI_Module = SPIx;
+//   CS_GPIO = CS_GPIOx;
+// //   CS_GPIO_Pin = CS_GPIO_Pin_x;
+//   spiBusyFlag = 0;
+// }
  
 void spi_enableTxInterrupt(void){
   SPI_I2S_ITConfig(SPI1, SPI_I2S_IT_TXE, ENABLE);
@@ -146,6 +146,17 @@ void init_SPI1(void){
   SPI_Cmd(SPI1, ENABLE);
   
   // on top :D
-  spi_create(SPI1, GPIOA);
+//   spi_create(SPI1, GPIOA);
+  SPI_Module = SPI1;
+//   CS_GPIO = GPIOA;
+//   CS_GPIO_Pin = CS_GPIO_Pin_x;
+  spiBusyFlag = 0;
   
-}
\ No newline at end of file
+}
+
+
+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
+}
+
index 5ff1482a99f1bcb9d0b93864531e771831cdea06..1207f23e8d5372b1e48eab7ce6c843d7052641c1 100644 (file)
@@ -1,8 +1,9 @@
 #include "stm32f10x_conf.h"
  
-void spi_create(SPI_TypeDef * SPIx, GPIO_TypeDef * CS_GPIOx);
+// void spi_create(SPI_TypeDef * SPIx, GPIO_TypeDef * CS_GPIOx);
 void spi_handleSPI1Interrupt(void);
 void spi_writeTwoBytes(uint8_t byte1, uint8_t byte0);
 void spi_writeWord(uint16_t word);
 
-void init_SPI1(void);
\ No newline at end of file
+void init_SPI1(void);
+void adc_conv0_pulse(void);
\ No newline at end of file