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