|
@@ -178,7 +178,7 @@ int main(void)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-static uint32_t current_baudrate = CAS_BAUDRATE_ABC80;
|
|
|
+static uint32_t current_baudrate;
|
|
|
|
|
|
/** Configures the board hardware and chip peripherals for the demo's functionality. */
|
|
|
void SetupHardware(void)
|
|
@@ -199,7 +199,10 @@ void SetupHardware(void)
|
|
|
PORTB = (1 << 0) | (1 << 4);
|
|
|
DDRB = ~(1 << 4);
|
|
|
|
|
|
- /* Initialize transmitter (and receiver) */
|
|
|
+ /* Initialize receiver and transmitter */
|
|
|
+ fmrx_init();
|
|
|
+ current_baudrate = fmtx_real_baudrate(0);
|
|
|
+ fmrx_set_speed(current_baudrate);
|
|
|
fmtx_init_speed(current_baudrate);
|
|
|
}
|
|
|
|
|
@@ -229,19 +232,15 @@ void EVENT_USB_Device_ControlRequest(void)
|
|
|
CDC_Device_ProcessControlRequest(&VirtualSerial_CDC_Interface);
|
|
|
}
|
|
|
|
|
|
-#if 0
|
|
|
-/** ISR to manage the reception of data from the serial port, placing received bytes into a circular buffer
|
|
|
- * for later transmission to the host.
|
|
|
+/*
|
|
|
+ * Called from the demodulation ISR to push a new byte into the buffer
|
|
|
*/
|
|
|
-ISR(USART1_RX_vect, ISR_BLOCK)
|
|
|
+void fmrx_recv_byte(uint8_t byte)
|
|
|
{
|
|
|
- uint8_t ReceivedByte = UDR1;
|
|
|
-
|
|
|
- if ((USB_DeviceState == DEVICE_STATE_Configured) &&
|
|
|
- !(RingBuffer_IsFull(&CAStoUSB_Buffer)))
|
|
|
- RingBuffer_Insert(&CAStoUSB_Buffer, ReceivedByte);
|
|
|
+ if (USB_DeviceState == DEVICE_STATE_Configured &&
|
|
|
+ !RingBuffer_IsFull(&CAStoUSB_Buffer))
|
|
|
+ RingBuffer_Insert(&CAStoUSB_Buffer, byte);
|
|
|
}
|
|
|
-#endif
|
|
|
|
|
|
/** Event handler for the CDC Class driver Line Encoding Changed event.
|
|
|
*
|
|
@@ -251,10 +250,13 @@ void EVENT_CDC_Device_LineEncodingChanged(USB_ClassInfo_CDC_Device_t* const CDCI
|
|
|
{
|
|
|
uint32_t baudrate = CDCInterfaceInfo->State.LineEncoding.BaudRateBPS;
|
|
|
|
|
|
+ baudrate = fmtx_real_baudrate(baudrate);
|
|
|
+
|
|
|
if (baudrate != current_baudrate) {
|
|
|
current_baudrate = baudrate;
|
|
|
fmtx_drain();
|
|
|
- fmtx_init_speed(baudrate);
|
|
|
+ fmrx_set_speed(current_baudrate);
|
|
|
+ fmtx_init_speed(current_baudrate);
|
|
|
}
|
|
|
}
|
|
|
|