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) {
// MAIN ---------------------------------------------------------------------
int main(int argc, char *argv[]) {
+
+ uint8_t UcRegAddr;
SystemInit();
disable_JTAG(); //disable JTAG to free GPIO ports
report_all_registers();
+ while(1) {
+
+ if(BufferOut(&UcRegAddr)){
+ decode_register(UcRegAddr);
+ }
+
+ }
return 0;
byte0 = data;
uC_regs[addr] = ((uint16_t) byte1)<<8 | (uint16_t) byte0;
byte_counter = 0;
- decode_register(addr);
+// decode_register(addr);
+ BufferIn(addr);
break;
}
}