}
-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) {
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
#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;
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);
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
+}
+
#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